mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Make the temporary HUD a bit more obivous
This commit is contained in:
parent
f67e2b5ce1
commit
18db196e7e
1 changed files with 5 additions and 1 deletions
|
|
@ -8281,10 +8281,14 @@ static void K_drawKartRingsAndLives(void)
|
||||||
ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_CRIMSON, GTC_CACHE);
|
ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_CRIMSON, GTC_CACHE);
|
||||||
colorring = true;
|
colorring = true;
|
||||||
}
|
}
|
||||||
else if (stplyr->kartstuff[k_ringlock]) // SPB ring lock
|
else if (stplyr->kartstuff[k_ringlock] && !(leveltime/5 & 1)) // SPB ring lock
|
||||||
|
{
|
||||||
ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_JET, GTC_CACHE);
|
ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_JET, GTC_CACHE);
|
||||||
|
colorring = true;
|
||||||
|
}
|
||||||
else if (stplyr->kartstuff[k_rings] >= 20) // Maxed out
|
else if (stplyr->kartstuff[k_rings] >= 20) // Maxed out
|
||||||
ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_YELLOW, GTC_CACHE);
|
ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_YELLOW, GTC_CACHE);
|
||||||
|
|
||||||
|
|
||||||
if (netgame)
|
if (netgame)
|
||||||
V_DrawScaledPatch(LAPS_X, LAPS_Y-11, V_HUDTRANS|splitflags, kp_ringsticker[1]);
|
V_DrawScaledPatch(LAPS_X, LAPS_Y-11, V_HUDTRANS|splitflags, kp_ringsticker[1]);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue