mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +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
954a21123a
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…
Add table
Reference in a new issue