From 18db196e7e7e014420a4cf61e141e4b5f391d2e4 Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Tue, 9 Apr 2019 14:22:35 -0400 Subject: [PATCH] Make the temporary HUD a bit more obivous --- src/k_kart.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/k_kart.c b/src/k_kart.c index e8d1f52c6..0a7318af6 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -8281,10 +8281,14 @@ static void K_drawKartRingsAndLives(void) ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_CRIMSON, GTC_CACHE); 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); + colorring = true; + } else if (stplyr->kartstuff[k_rings] >= 20) // Maxed out ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_YELLOW, GTC_CACHE); + if (netgame) V_DrawScaledPatch(LAPS_X, LAPS_Y-11, V_HUDTRANS|splitflags, kp_ringsticker[1]);