New Permission: essentials.lightning.others

With this permission you can use /lightning <player>, without only strike based on direction.
This commit is contained in:
KHobbits 2012-03-11 20:58:54 +00:00
parent 5c2622b390
commit a40c936bcf

View file

@ -24,7 +24,7 @@ public class Commandlightning extends EssentialsCommand
{
user = ess.getUser(((Player)sender));
}
if (args.length < 1 & user != null)
if ((args.length < 1 || !user.isAuthorized("essentials.lightning.others")) & user != null)
{
user.getWorld().strikeLightning(user.getTargetBlock(null, 600).getLocation());
return;