1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-24 07:13:17 +02:00

Invert teleport timer.

This commit is contained in:
KHobbits
2012-06-13 02:51:47 +01:00
parent 20c1ab7888
commit 81e98cf04a

View File

@@ -169,8 +169,8 @@ public class Teleport implements Runnable, ITeleport
else if (lastTime > earliestLong && !user.isAuthorized("essentials.teleport.cooldown.bypass"))
{
time.setTimeInMillis(lastTime);
time.add(Calendar.SECOND, (int)delay);
time.add(Calendar.MILLISECOND, (int)((delay * 1000.0) % 1000.0));
time.add(Calendar.SECOND, (-1) * (int)delay);
time.add(Calendar.MILLISECOND, (-1) * (int)((delay * 1000.0) % 1000.0));
throw new Exception(_("timeBeforeTeleport", Util.formatDateDiff(time.getTimeInMillis())));
}
}