Plot deny / kick bypass

Fixes #777
This commit is contained in:
Jesse Boyd
2015-12-17 17:51:12 +11:00
parent c32cfc62fa
commit ce387333d2
3 changed files with 20 additions and 7 deletions

View File

@ -35,7 +35,6 @@ public class Kick extends SubCommand {
@Override
public boolean onCommand(final PlotPlayer plr, final String[] args) {
final Location loc = plr.getLocation();
final Plot plot = MainUtil.getPlotAbs(loc);
if (plot == null) {
@ -59,6 +58,10 @@ public class Kick extends SubCommand {
MainUtil.sendMessage(plr, C.INVALID_PLAYER, args[0]);
return false;
}
if (player.hasPermission("plots.admin.command.kick")) {
C.CANNOT_KICK_PLAYER.send(plr, player.getName());
return false;
}
player.teleport(BlockManager.manager.getSpawn(loc.getWorld()));
return true;
}