Merge pull request #255 from Simplicitee/patch-10

Fix remove command
This commit is contained in:
OmniCypher 2015-09-25 19:02:19 -07:00
commit 17a9c6a612

View file

@ -55,9 +55,9 @@ public class RemoveCommand extends PKCommand {
@Override
public boolean hasPermission(CommandSender sender) {
if (sender.hasPermission("bending.admin." + getName())) {
sender.sendMessage(ChatColor.RED + "You don't have permission to use this command.");
return true;
}
sender.sendMessage(ChatColor.RED + "You don't have permission to use this command.");
return false;
}
}