Fixed incorrect permission for /vsd a.k.a /disguiseviewself

This commit is contained in:
NavidK0 2015-07-15 08:27:45 -04:00
parent 7301a60aa4
commit 91a8aefcee

@ -11,20 +11,22 @@ public class LibsDisguisesCommand implements CommandExecutor {
@Override @Override
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) { public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
if (args.length == 0) { if (!sender.hasPermission("libsdisguises.reload")) {
sender.sendMessage(ChatColor.DARK_GREEN if (args.length == 0) {
+ "This server is running " sender.sendMessage(ChatColor.DARK_GREEN
+ "Lib's Disguises v." + "This server is running "
+ Bukkit.getPluginManager().getPlugin("LibsDisguises").getDescription().getVersion() + "Lib's Disguises v."
+ " by libraryaddict, maintained by NavidK0.\n" + Bukkit.getPluginManager().getPlugin("LibsDisguises").getDescription().getVersion()
+ "Use /libsdisguises reload to reload the config. All disguises will be blown by doing this."); + " by libraryaddict, maintained by NavidK0.\n"
} else if (args.length > 0) { + "Use /libsdisguises reload to reload the config. All disguises will be blown by doing this.");
if (args[0].equalsIgnoreCase("reload")) { } else if (args.length > 0) {
LibsDisguises.instance.reload(); if (args[0].equalsIgnoreCase("reload")) {
sender.sendMessage(ChatColor.GREEN + "[LibsDisguises] Reloaded config."); LibsDisguises.instance.reload();
return true; sender.sendMessage(ChatColor.GREEN + "[LibsDisguises] Reloaded config.");
} else { return true;
sender.sendMessage(ChatColor.RED + "[LibsDisguises] That command doesn't exist!"); } else {
sender.sendMessage(ChatColor.RED + "[LibsDisguises] That command doesn't exist!");
}
} }
} }
return true; return true;