Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
lscgh committed Feb 6, 2024
1 parent 11f5f7c commit 9179d43
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ public List<String> onTabComplete(CommandSender sender, Command command, String
for(String arg: args) argList.add(arg);
argList.removeIf((arg) -> arg.isEmpty() && argList.indexOf(arg) != argList.size() - 1);

sender.sendMessage("Your list " + argList);

ArrayList<String> completions = new ArrayList<String>();

boolean playerIsCurrentlyInAGame = Game.runningGames.containsKey((Player)sender);
Expand Down

0 comments on commit 9179d43

Please sign in to comment.