From 56dc08ed88223e06042f92690941ce172fd4b126 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Mon, 2 Nov 2020 01:09:38 -0500 Subject: [PATCH] Shitty temp emeralds hud --- src/k_hud.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/k_hud.c b/src/k_hud.c index ff689f7f2..f6f6cbb47 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -4115,4 +4115,9 @@ void K_drawKartHUD(void) } K_DrawWaypointDebugger(); + + if (gametype == GT_BATTLE) + { + V_DrawString(8, 8, V_SPLITSCREEN|V_SNAPTOTOP|V_SNAPTOLEFT, va("Emeralds: %d / 7", K_NumEmeralds(stplyr))); + } }