Fixed some more permissions related things

This commit is contained in:
NavidK0 2015-07-15 08:33:06 -04:00
parent 890bac0916
commit 8c633adb8e

View File

@ -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;
}
}