1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-09 16:17:37 +02:00

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 ba50ce5f3a
commit 21cb0edc46

View File

@@ -24,7 +24,7 @@ public class Commandlightning extends EssentialsCommand
{ {
user = ess.getUser(((Player)sender)); 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()); user.getWorld().strikeLightning(user.getTargetBlock(null, 600).getLocation());
return; return;