Added /report probably (and fixed party chat tab complete)

This commit is contained in:
2022-02-20 18:19:52 +01:00
parent fecca063e7
commit 56010fb9ad
5 changed files with 41 additions and 7 deletions
@@ -93,7 +93,7 @@ public class PartyCommand implements SimpleCommand {
List<String> finalValues = new ArrayList<>();
for (String str : possibleValues) {
if (str.toLowerCase().startsWith(remaining)) {
if (str.toLowerCase().startsWith(remaining.toLowerCase())) {
finalValues.add(StringArgumentType.escapeIfRequired(str));
}
}