Skip to content

Commit

Permalink
server: reduce hornetgun recharge time.
Browse files Browse the repository at this point in the history
  • Loading branch information
nekonomicon committed Nov 17, 2023
1 parent 497dd83 commit 3523b52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/hornetgun.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 3523b52

Please sign in to comment.