aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVixid <52578495+Vixid1@users.noreply.github.com>2022-11-04 16:35:23 +0000
committerGitHub <noreply@github.com>2022-11-04 17:35:23 +0100
commit5a30d9142f73edf539343d51e7d69ab7a225c7a2 (patch)
tree2a556eb4344c52615c333a53dd39681356f2e51d
parentf26c10e527cc4588182290cf7a6484576cefe08f (diff)
downloadNotEnoughUpdates-5a30d9142f73edf539343d51e7d69ab7a225c7a2.tar.gz
NotEnoughUpdates-5a30d9142f73edf539343d51e7d69ab7a225c7a2.tar.bz2
NotEnoughUpdates-5a30d9142f73edf539343d51e7d69ab7a225c7a2.zip
Fixes social controls in party and guild chats (#422)
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java b/src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java
index 57f24370..cac6990f 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java
@@ -2009,12 +2009,12 @@ public class Utils {
// If the first character is a square bracket the user has a rank
// So we get the username from the space after the closing square bracket (end of their rank)
if (username.charAt(0) == '[') {
- username = username.substring(unformattedText.indexOf(" ") + 2);
+ username = username.substring(username.indexOf(" ") + 1);
}
// If we still get any square brackets it means the user was talking in guild chat with a guild rank
// So we get the username up to the space before the guild rank
if (username.contains("[") || username.contains("]")) {
- username = username.substring(0, unformattedText.indexOf(" "));
+ username = username.substring(0, username.indexOf(" "));
}
return username;
}