mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-18 00:25:32 +01: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:
parent
5c2622b390
commit
a40c936bcf
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user