mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-03 15:08:18 +01:00
Commit 1001
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1027 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
parent
79d2518939
commit
903ccfc798
@ -139,7 +139,7 @@ public class User extends PlayerExtension implements Comparable<User>
|
||||
long now = Calendar.getInstance().getTimeInMillis();
|
||||
long cooldown = Essentials.getSettings().getTeleportCooldown();
|
||||
long left = lastTeleport + cooldown - now;
|
||||
if (left > 0 && !isOp() && !isAuthorized("essentials.teleport.cooldown.bypass"))
|
||||
if ((left > 0 && !isOp() && !isAuthorized("essentials.teleport.cooldown.bypass")) | !isJailed())
|
||||
throw new Exception("Time before next teleport: " + Essentials.FormatTime(left));
|
||||
// if justCheck is set, don't update lastTeleport; we're just checking
|
||||
if (!justCheck) lastTeleport = now;
|
||||
@ -385,6 +385,7 @@ public class User extends PlayerExtension implements Comparable<User>
|
||||
|
||||
public void teleportTo(final Location loc, final String chargeFor)
|
||||
{
|
||||
|
||||
final long delay = Essentials.getSettings().getTeleportDelay();
|
||||
|
||||
if (delay <= 0 || isOp() || isAuthorized("essentials.teleport.timer.bypass"))
|
||||
@ -434,6 +435,7 @@ public class User extends PlayerExtension implements Comparable<User>
|
||||
|
||||
public void teleportTo(final Entity entity, final String chargeFor)
|
||||
{
|
||||
|
||||
final long delay = Essentials.getSettings().getTeleportDelay();
|
||||
|
||||
if (delay <= 0 || isOp() || isAuthorized("essentials.teleport.timer.bypass"))
|
||||
|
Loading…
Reference in New Issue
Block a user