New permission: essentials.sethome.bed

Players with this permission will force a bed home updating if daytime beds are enabled.
This commit is contained in:
KHobbits 2013-01-10 22:36:38 +00:00
parent 5c99eee0c0
commit 2d4a07b95b

View File

@ -439,10 +439,13 @@ public class EssentialsPlayerListener implements Listener
case RIGHT_CLICK_BLOCK: case RIGHT_CLICK_BLOCK:
if (!event.isCancelled() && event.getClickedBlock().getTypeId() == BED && ess.getSettings().getUpdateBedAtDaytime()) if (!event.isCancelled() && event.getClickedBlock().getTypeId() == BED && ess.getSettings().getUpdateBedAtDaytime())
{ {
Player player = event.getPlayer(); User player = ess.getUser(event.getPlayer());
if (player.isAuthorized("essentials.sethome.bed"))
{
player.setBedSpawnLocation(event.getClickedBlock().getLocation()); player.setBedSpawnLocation(event.getClickedBlock().getLocation());
player.sendMessage(_("homeSet", player.getLocation().getWorld().getName(), player.getLocation().getBlockX(), player.getLocation().getBlockY(), player.getLocation().getBlockZ())); player.sendMessage(_("homeSet", player.getLocation().getWorld().getName(), player.getLocation().getBlockX(), player.getLocation().getBlockY(), player.getLocation().getBlockZ()));
} }
}
break; break;
case LEFT_CLICK_AIR: case LEFT_CLICK_AIR:
if (event.getPlayer().isFlying()) if (event.getPlayer().isFlying())