mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-03 11:06:08 +00:00
New perm: essentials.kit.exemptdelay
Allows you to exempt from kit delays.
This commit is contained in:
parent
eaa93d545d
commit
d43cb95d72
1 changed files with 4 additions and 0 deletions
|
@ -39,6 +39,10 @@ public class Kit
|
||||||
|
|
||||||
public static void checkTime(final User user, final String kitName, final Map<String, Object> els) throws NoChargeException
|
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();
|
final Calendar time = new GregorianCalendar();
|
||||||
|
|
||||||
// Take the current time, and remove the delay from it.
|
// Take the current time, and remove the delay from it.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue