From eb3f62c3d529d3e74d8d4a5537f48b3953c33eb1 Mon Sep 17 00:00:00 2001 From: kitty624 <58940527+kitty624@users.noreply.github.com> Date: Fri, 1 Aug 2025 20:52:22 +0200 Subject: [PATCH] Reverting Commit 9122d7a it made: CAN_FAN_THE_HAMMER = FALSE now disables the burst mode on pistols which effectivly resulted in pistols burst mode only being avaialbale with can fan the hammer active which further resulted in being required to fire from hip mode when using burst with pistols that's not a desired behaviour for burst on pistols, their burst should not depend on fan the hammer therefore reverted --- Tactical/Weapons.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tactical/Weapons.cpp b/Tactical/Weapons.cpp index 9649faa01..77e7e0a37 100644 --- a/Tactical/Weapons.cpp +++ b/Tactical/Weapons.cpp @@ -9957,10 +9957,6 @@ BOOLEAN IsGunBurstCapable(OBJECTTYPE* pObject, BOOLEAN fNotify, SOLDIERTYPE* pSo fCapable = TRUE; } } - else if (Weapon[pObject->usItem].fBurstOnlyByFanTheHammer) - { - fCapable = FALSE; - } } } }