diff --git a/eco-api/src/main/java/com/willfp/eco/core/command/impl/HandledCommand.java b/eco-api/src/main/java/com/willfp/eco/core/command/impl/HandledCommand.java index d39933d7..8220784f 100644 --- a/eco-api/src/main/java/com/willfp/eco/core/command/impl/HandledCommand.java +++ b/eco-api/src/main/java/com/willfp/eco/core/command/impl/HandledCommand.java @@ -205,7 +205,7 @@ abstract class HandledCommand implements CommandBase { if (this.getTabCompleter() != null) { return this.getTabCompleter().tabComplete(sender, Arrays.asList(args)); } else { - List completions = this.tabComplete(sender, Arrays.asList(args)); + List completions = new ArrayList<>(this.tabComplete(sender, Arrays.asList(args))); if (sender instanceof Player player) { completions.addAll(this.tabComplete(player, Arrays.asList(args))); }