Add permission: essentials.msg.multiple and essentials.pay.multiple

Message permission will allow rough nick matches and wildcards, while pay will only allow wildcards.
This commit is contained in:
KHobbits 2013-12-28 22:35:55 +00:00
parent 58440dd594
commit 46691871ad
10 changed files with 21 additions and 18 deletions

View file

@ -22,7 +22,7 @@ public class Commandext extends EssentialsLoopCommand
throw new NotEnoughArgumentsException();
}
loopOnlinePlayers(server, sender, true, args[0], null);
loopOnlinePlayers(server, sender, true, true, args[0], null);
}
@Override
@ -35,7 +35,7 @@ public class Commandext extends EssentialsLoopCommand
return;
}
loopOnlinePlayers(server, user.getSource(), true, args[0], null);
loopOnlinePlayers(server, user.getSource(), true, true, args[0], null);
}
@Override