From 43040094e994db48e65f7b1e2ad0417a63f56127 Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Thu, 13 Feb 2025 17:52:50 +0100 Subject: [PATCH] reset currently_active state to false in G_NextWeaponReset() --- src/g_nextweapon.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/g_nextweapon.c b/src/g_nextweapon.c index 128aef0c..55e57a7c 100644 --- a/src/g_nextweapon.c +++ b/src/g_nextweapon.c @@ -218,6 +218,7 @@ void G_NextWeaponResendCmd(void) void G_NextWeaponReset(void) { + currently_active = false; state = nw_state_none; ST_ResetCarousel(); }