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:
@@ -82,10 +82,12 @@ public class MuteCommand implements CommandExecutor, TabCompleter {
|
|||||||
try {
|
try {
|
||||||
Long.parseLong(args[i]);
|
Long.parseLong(args[i]);
|
||||||
} catch (NumberFormatException ignored){
|
} catch (NumberFormatException ignored){
|
||||||
|
if (i != 1){
|
||||||
return List.of();
|
return List.of();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return List.of(
|
return List.of(
|
||||||
"100ms",
|
"100ms",
|
||||||
"15s", // some sample completions for duration
|
"15s", // some sample completions for duration
|
||||||
|
|||||||
Reference in New Issue
Block a user