Skip to content

Commit

Permalink
timers: Don't clear stamina on death
Browse files Browse the repository at this point in the history
As of 8aaaa32, a player's stamina timer
is determined from their vars thus does not need to be automatically
cleared on death.
  • Loading branch information
Nightfirecat committed Jun 10, 2022
1 parent 82c93f4 commit ceb1c96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
@Getter(AccessLevel.PACKAGE)
enum GameTimer
{
STAMINA(ItemID.STAMINA_POTION4, GameTimerImageType.ITEM, "Stamina", true),
STAMINA(ItemID.STAMINA_POTION4, GameTimerImageType.ITEM, "Stamina", false),
ANTIFIRE(ItemID.ANTIFIRE_POTION4, GameTimerImageType.ITEM, "Antifire", 6, ChronoUnit.MINUTES),
EXANTIFIRE(ItemID.EXTENDED_ANTIFIRE4, GameTimerImageType.ITEM, "Extended antifire", 12, ChronoUnit.MINUTES),
OVERLOAD(ItemID.OVERLOAD_4, GameTimerImageType.ITEM, "Overload", 5, ChronoUnit.MINUTES, true),
Expand Down

0 comments on commit ceb1c96

Please sign in to comment.