mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-08-25 21:32:00 +00:00
Merge pull request #88 from FreeSlave/fix_crowbar_delay
Fix crowbar delay after the first hit
This commit is contained in:
commit
6dff6e3c61
@ -335,7 +335,11 @@ int CCrowbar::Swing( int fFirst )
|
|||||||
SetThink( &CCrowbar::Smack );
|
SetThink( &CCrowbar::Smack );
|
||||||
pev->nextthink = UTIL_WeaponTimeBase() + 0.2;
|
pev->nextthink = UTIL_WeaponTimeBase() + 0.2;
|
||||||
#endif
|
#endif
|
||||||
|
#if CROWBAR_DELAY_FIX
|
||||||
|
m_flNextPrimaryAttack = UTIL_WeaponTimeBase() + 0.25;
|
||||||
|
#else
|
||||||
m_flNextPrimaryAttack = GetNextAttackDelay( 0.25 );
|
m_flNextPrimaryAttack = GetNextAttackDelay( 0.25 );
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
#ifdef CROWBAR_IDLE_ANIM
|
#ifdef CROWBAR_IDLE_ANIM
|
||||||
m_flTimeWeaponIdle = UTIL_WeaponTimeBase() + UTIL_SharedRandomFloat( m_pPlayer->random_seed, 10, 15 );
|
m_flTimeWeaponIdle = UTIL_WeaponTimeBase() + UTIL_SharedRandomFloat( m_pPlayer->random_seed, 10, 15 );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user