From 79db5ac5fe26d665e9f385f4d63d7cc766c43ccc Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Thu, 10 Jan 2019 11:14:30 +0100 Subject: [PATCH] Fix the C4 bomb not being cleared when dropping it. --- Source/Shared/Weapons.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Shared/Weapons.c b/Source/Shared/Weapons.c index eb1fac6d..09fd6a11 100755 --- a/Source/Shared/Weapons.c +++ b/Source/Shared/Weapons.c @@ -494,7 +494,7 @@ void Weapon_DropWeapon( int iSlot ) { self.fSlotGrenade = 0; } else if ( iSlot == SLOT_C4BOMB ) { fWeapon = self.fSlotC4Bomb; - self.fSlotGrenade = 0; + self.fSlotC4Bomb = 0; } else { return; }