timers: Track home and minigame teleports using vars (#14842)

This commit is contained in:
superiorser9
2022-05-26 23:33:10 +01:00
committed by GitHub
parent a830bc5572
commit 88e39ab152
3 changed files with 70 additions and 97 deletions

View File

@@ -221,6 +221,16 @@ public enum VarPlayer
SETTINGS_TRANSPARENT_CHAT_TRADE_REQUEST(3006),
SETTINGS_TRANSPARENT_CHAT_CHALLENGE_REQUEST(3007),
/**
* The difference, measured in minutes, between the time home teleport spell was last used and midnight, January 1, 1970 UTC.
*/
LAST_HOME_TELEPORT(892),
/**
* The difference, measured in minutes, between the time minigame teleport was last used and midnight, January 1, 1970 UTC.
*/
LAST_MINIGAME_TELEPORT(888),
;
private final int id;