mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 21:01:04 +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)
|
if (exitcountdown > 1)
|
||||||
exitcountdown--;
|
exitcountdown--;
|
||||||
|
|
||||||
if (indirectitemcooldown > 1)
|
if (indirectitemcooldown > 0)
|
||||||
indirectitemcooldown--;
|
indirectitemcooldown--;
|
||||||
if (hyubgone > 1)
|
if (hyubgone > 0)
|
||||||
hyubgone--;
|
hyubgone--;
|
||||||
|
|
||||||
if (G_BattleGametype())
|
if (G_BattleGametype())
|
||||||
|
|
Loading…
Reference in a new issue