From d2f2f5ae7677c1aaca1cea0ddca592f23da805ca Mon Sep 17 00:00:00 2001 From: dystopm Date: Sun, 11 Aug 2024 17:39:17 -0400 Subject: [PATCH] Fix Shotguns reload flag not getting reset on weapon changing --- regamedll/dlls/weapons.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/regamedll/dlls/weapons.cpp b/regamedll/dlls/weapons.cpp index 9a3d8e0c0..087f45eee 100644 --- a/regamedll/dlls/weapons.cpp +++ b/regamedll/dlls/weapons.cpp @@ -1671,6 +1671,10 @@ void CBasePlayerWeapon::Holster(int skiplocal) m_fInReload = FALSE; m_pPlayer->pev->viewmodel = 0; m_pPlayer->pev->weaponmodel = 0; + +#ifdef REGAMEDLL_FIXES + m_fInSpecialReload = 0; +#endif } // called by the new item with the existing item as parameter