Fixed error when typing something after server in queue command

This commit is contained in:
ajgeiss0702
2021-02-23 09:35:24 -07:00
parent b154c46dea
commit 785805834a
@@ -51,6 +51,6 @@ public class MoveCommand extends Command implements TabExecutor {
if(args.length == 1) {
return Manager.getInstance().getServerNames();
}
return null;
return new ArrayList<>();
}
}