From 12b56701aa082137ba02e95b36c51648b96d4849 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Thu, 11 Sep 2025 10:41:09 -0400 Subject: [PATCH] Fix balance changes display for drafting --- src/k_hud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_hud.c b/src/k_hud.c index 9c164ad0e..dc7cfa869 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -2275,7 +2275,7 @@ void K_DrawServerMods(INT32 x, INT32 y) {"Chaining", 0, NULL, K_ChainingActive() > 0, true}, {"Chain Offroad", 0, &cv_kartchainingoffroad, -1, true}, {"Slope Boost", 0, NULL, K_PurpleDriftActive() > 0, true}, - {"Drafting", 0, NULL, K_PurpleDriftActive() > 0, true}, + {"Drafting", 0, NULL, K_DraftingActive() > 0, true}, {"Bump Spark", 0, &cv_kartbumpspark, -1, true}, {"Bump Spring", 0, &cv_kartbumpspring, -1, true}, {"Alt. Invin.", 0, NULL, K_GetKartInvinType() == KARTINVIN_ALTERN, true}