Added forgotten "return true;" in CommandsETF.java

This commit is contained in:
cascaseno 2020-11-08 21:56:25 +01:00 committed by GitHub
parent 28aacc31bf
commit a8d3dfa042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ public class CommandETF implements CommandExecutor {
if (args[0].equalsIgnoreCase("reload")) {
EntityTrackerFixer.plugin.reload();
commandSender.sendMessage(ChatColor.GREEN + "The config has been reloaded sucessfully!");
return true;
}
commandSender.sendMessage(ChatColor.RED + "Invalid argument. Available: " + ChatColor.GOLD + "/etf reload" + ChatColor.RED + ".");
return true;