From 1e1d02411bbeccdafd2e5652a74917e7194c5dc7 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Fri, 7 Dec 2018 14:14:30 +0100 Subject: [PATCH] Fix for being unable to defuse the C4 with the new input-button swap. --- Source/Shared/WeaponC4Bomb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Shared/WeaponC4Bomb.c b/Source/Shared/WeaponC4Bomb.c index c9a61138..65637ad3 100755 --- a/Source/Shared/WeaponC4Bomb.c +++ b/Source/Shared/WeaponC4Bomb.c @@ -110,7 +110,7 @@ static void WeaponC4BOMB_Use( void ) { static void WeaponC4BOMB_Think( void ) { // If the guy who started using us stopped using us, reset the defuser counter - if ( ( self.eUser != world ) && ( self.eUser.button3 == FALSE ) ) { + if ( ( self.eUser != world ) && ( self.eUser.button5 == FALSE ) ) { self.eUser.fProgressBar = 0; self.eUser = world; fDefuseProgress = 0;