We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58ea9dd commit e893839Copy full SHA for e893839
src/main/java/io/github/axolotlclient/modules/hypixel/autoboop/AutoBoop.java
@@ -50,7 +50,7 @@ public OptionCategory getCategory() {
50
51
public void onMessage(Text message) {
52
if (enabled.get() && message.getString().contains("Friend >") && message.getString().contains("joined.")) {
53
- String player = message.getString().substring(message.getString().indexOf(">") + 2,
+ String player = message.getString().substring(message.getString().indexOf(">"),
54
message.getString().lastIndexOf(" "));
55
Util.sendChatMessage("/boop " + player);
56
}
0 commit comments