1
mirror of https://github.com/Shiewk/SModeration.git synced 2026-04-28 05:54:16 +02:00

fix buggy tab completion again

This commit is contained in:
Shy
2024-06-08 11:47:22 +02:00
parent e36dcacc9d
commit 2cfe346389
@@ -82,7 +82,9 @@ public class MuteCommand implements CommandExecutor, TabCompleter {
try {
Long.parseLong(args[i]);
} catch (NumberFormatException ignored){
return List.of();
if (i != 1){
return List.of();
}
}
}
}