Fixed users such as #tnt being incorrectly parsed

This commit is contained in:
Intelli 2025-04-11 17:18:04 -06:00
parent 8f8a263278
commit bb86b1b555

View file

@ -128,14 +128,6 @@ public class UserParser {
next = 0; next = 0;
} }
} }
// Handle u:#player format for excluded users
else if (argument.startsWith("u:#")) {
String username = argument.substring(3); // Remove the 'u:#' prefix
if (!username.isEmpty()) {
excluded.add(username);
}
next = 0;
}
else { else {
next = 0; next = 0;
} }