mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-07 07:06:41 +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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user