Fixed some more permissions related things
This commit is contained in:
		| @@ -11,7 +11,6 @@ public class LibsDisguisesCommand implements CommandExecutor { | ||||
|  | ||||
|     @Override | ||||
|     public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) { | ||||
|         if (!sender.hasPermission("libsdisguises.reload")) { | ||||
|             if (args.length == 0) { | ||||
|                 sender.sendMessage(ChatColor.DARK_GREEN | ||||
|                         + "This server is running " | ||||
| @@ -20,15 +19,18 @@ public class LibsDisguisesCommand implements CommandExecutor { | ||||
|                         + " by libraryaddict, maintained by NavidK0.\n" | ||||
|                         + "Use /libsdisguises reload to reload the config. All disguises will be blown by doing this."); | ||||
|             } else if (args.length > 0) { | ||||
|                 if (args[0].equalsIgnoreCase("reload")) { | ||||
|                     LibsDisguises.instance.reload(); | ||||
|                     sender.sendMessage(ChatColor.GREEN + "[LibsDisguises] Reloaded config."); | ||||
|                     return true; | ||||
|                 if (!sender.hasPermission("libsdisguises.reload")) { | ||||
|                     if (args[0].equalsIgnoreCase("reload")) { | ||||
|                         LibsDisguises.instance.reload(); | ||||
|                         sender.sendMessage(ChatColor.GREEN + "[LibsDisguises] Reloaded config."); | ||||
|                         return true; | ||||
|                     } else { | ||||
|                         sender.sendMessage(ChatColor.RED + "[LibsDisguises] That command doesn't exist!"); | ||||
|                     } | ||||
|                 } else { | ||||
|                     sender.sendMessage(ChatColor.RED + "[LibsDisguises] That command doesn't exist!"); | ||||
|                     sender.sendMessage(ChatColor.RED + "You are forbidden to use this command."); | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|         return true; | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user