From 1e868d6bfae7d28a76b45e6cb47dfde8cd1ff411 Mon Sep 17 00:00:00 2001 From: yamamama Date: Wed, 4 Feb 2026 11:31:45 -0500 Subject: [PATCH] Make this consistent with bumpspark --- src/d_netcmd.c | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 3af66c799..a3d0b41db 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -8473,17 +8473,14 @@ static void KartAirDrop_OnChange(void) return; } - if (!K_AirDropActive() && cv_kartairdrop.value) + if (leveltime < starttime) { - if (leveltime < starttime) - { - CONS_Printf(M_GetText("Air Drop has been set to \"%s\".\n"), cv_kartairdrop.string); - airdropactive = (UINT8)cv_kartairdrop.value; - } - else - { - CONS_Printf(M_GetText("Air Drop will be set to \"%s\" next round.\n"), cv_kartairdrop.string); - } + CONS_Printf(M_GetText("Air Drop has been set to \"%s\".\n"), cv_kartairdrop.string); + airdropactive = (UINT8)cv_kartairdrop.value; + } + else + { + CONS_Printf(M_GetText("Air Drop will be set to \"%s\" next round.\n"), cv_kartairdrop.string); } }