mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix indirect item cooldown never resetting
This commit is contained in:
parent
8c6b8cd268
commit
2422d1c5b7
1 changed files with 1 additions and 1 deletions
|
|
@ -726,7 +726,7 @@ void P_Ticker(boolean run)
|
||||||
if (exitcountdown > 1)
|
if (exitcountdown > 1)
|
||||||
exitcountdown--;
|
exitcountdown--;
|
||||||
|
|
||||||
if (indirectitemcooldown > 1)
|
if (indirectitemcooldown > 0)
|
||||||
indirectitemcooldown--;
|
indirectitemcooldown--;
|
||||||
if (hyubgone > 1)
|
if (hyubgone > 1)
|
||||||
hyubgone--;
|
hyubgone--;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue