mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-14 05:41:02 +00:00
Fix indirect item cooldown never resetting
This commit is contained in:
parent
b320256a47
commit
2add55eb04
1 changed files with 1 additions and 1 deletions
|
@ -726,7 +726,7 @@ void P_Ticker(boolean run)
|
|||
if (exitcountdown > 1)
|
||||
exitcountdown--;
|
||||
|
||||
if (indirectitemcooldown > 1)
|
||||
if (indirectitemcooldown > 0)
|
||||
indirectitemcooldown--;
|
||||
if (hyubgone > 1)
|
||||
hyubgone--;
|
||||
|
|
Loading…
Reference in a new issue