mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
Merge branch 'indirectitemcooldown' into 'next'
Fix Shrink, SPB and Hyudoro cooldowns never resetting? See merge request KartKrew/Kart-Public!191
This commit is contained in:
commit
97c4e7dfff
1 changed files with 2 additions and 2 deletions
|
@ -726,9 +726,9 @@ void P_Ticker(boolean run)
|
|||
if (exitcountdown > 1)
|
||||
exitcountdown--;
|
||||
|
||||
if (indirectitemcooldown > 1)
|
||||
if (indirectitemcooldown > 0)
|
||||
indirectitemcooldown--;
|
||||
if (hyubgone > 1)
|
||||
if (hyubgone > 0)
|
||||
hyubgone--;
|
||||
|
||||
if (G_BattleGametype())
|
||||
|
|
Loading…
Reference in a new issue