mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-18 08:35:44 +01:00
New perm: essentials.kit.exemptdelay
Allows you to exempt from kit delays.
This commit is contained in:
parent
eaa93d545d
commit
d43cb95d72
@ -39,6 +39,10 @@ public class Kit
|
||||
|
||||
public static void checkTime(final User user, final String kitName, final Map<String, Object> els) throws NoChargeException
|
||||
{
|
||||
if (user.isAuthorized("essentials.kit.exemptdelay")) {
|
||||
return;
|
||||
}
|
||||
|
||||
final Calendar time = new GregorianCalendar();
|
||||
|
||||
// Take the current time, and remove the delay from it.
|
||||
|
Loading…
Reference in New Issue
Block a user