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,9 +439,12 @@ 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());
player.setBedSpawnLocation(event.getClickedBlock().getLocation()); if (player.isAuthorized("essentials.sethome.bed"))
player.sendMessage(_("homeSet", player.getLocation().getWorld().getName(), player.getLocation().getBlockX(), player.getLocation().getBlockY(), player.getLocation().getBlockZ())); {
player.setBedSpawnLocation(event.getClickedBlock().getLocation());
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: