From 3523b52f3e10172bed28f844259b5e9071491888 Mon Sep 17 00:00:00 2001 From: Andrey Akhmichin <15944199+nekonomicon@users.noreply.github.com> Date: Sat, 18 Nov 2023 02:40:11 +0500 Subject: [PATCH] server: reduce hornetgun recharge time. --- dlls/hornetgun.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/hornetgun.cpp b/dlls/hornetgun.cpp index 4223ddd6..f43adfd2 100644 --- a/dlls/hornetgun.cpp +++ b/dlls/hornetgun.cpp @@ -252,7 +252,7 @@ void CHgun::Reload( void ) while( m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType] < HORNET_MAX_CARRY && m_flRechargeTime < gpGlobals->time ) { m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType]++; - m_flRechargeTime += 0.5f; + m_flRechargeTime += 0.3f; } }