mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-11 15:38:12 +00:00
Add the latest steam changes for cl_autowepswitch cvar.
This commit is contained in:
parent
2de2509094
commit
2a264d2c9a
@ -324,6 +324,12 @@ BOOL CHalfLifeMultiplay::FShouldSwitchWeapon( CBasePlayer *pPlayer, CBasePlayerI
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if( pPlayer->m_iAutoWepSwitch == 2
|
||||||
|
&& pPlayer->m_afButtonLast & ( IN_ATTACK | IN_ATTACK2 ) )
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
if( !pPlayer->m_pActiveItem->CanHolster() )
|
if( !pPlayer->m_pActiveItem->CanHolster() )
|
||||||
{
|
{
|
||||||
// can't put away the active item.
|
// can't put away the active item.
|
||||||
@ -573,7 +579,11 @@ void CHalfLifeMultiplay::PlayerSpawn( CBasePlayer *pPlayer )
|
|||||||
{
|
{
|
||||||
BOOL addDefault;
|
BOOL addDefault;
|
||||||
CBaseEntity *pWeaponEntity = NULL;
|
CBaseEntity *pWeaponEntity = NULL;
|
||||||
|
int iOldAutoWepSwitch;
|
||||||
|
|
||||||
|
iOldAutoWepSwitch = pPlayer->m_iAutoWepSwitch;
|
||||||
|
|
||||||
|
pPlayer->m_iAutoWepSwitch = 1;
|
||||||
pPlayer->pev->weapons |= ( 1 << WEAPON_SUIT );
|
pPlayer->pev->weapons |= ( 1 << WEAPON_SUIT );
|
||||||
|
|
||||||
addDefault = TRUE;
|
addDefault = TRUE;
|
||||||
@ -590,6 +600,8 @@ void CHalfLifeMultiplay::PlayerSpawn( CBasePlayer *pPlayer )
|
|||||||
pPlayer->GiveNamedItem( "weapon_9mmhandgun" );
|
pPlayer->GiveNamedItem( "weapon_9mmhandgun" );
|
||||||
pPlayer->GiveAmmo( 68, "9mm", _9MM_MAX_CARRY );// 4 full reloads
|
pPlayer->GiveAmmo( 68, "9mm", _9MM_MAX_CARRY );// 4 full reloads
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pPlayer->m_iAutoWepSwitch = iOldAutoWepSwitch;
|
||||||
}
|
}
|
||||||
|
|
||||||
//=========================================================
|
//=========================================================
|
||||||
|
@ -2876,8 +2876,6 @@ void CBasePlayer::Spawn( void )
|
|||||||
|
|
||||||
m_flNextChatTime = gpGlobals->time;
|
m_flNextChatTime = gpGlobals->time;
|
||||||
|
|
||||||
m_iAutoWepSwitch = 1;
|
|
||||||
|
|
||||||
g_pGameRules->PlayerSpawn( this );
|
g_pGameRules->PlayerSpawn( this );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,6 +80,12 @@ BOOL CHalfLifeRules::FShouldSwitchWeapon( CBasePlayer *pPlayer, CBasePlayerItem
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if( pPlayer->m_iAutoWepSwitch == 2
|
||||||
|
&& pPlayer->m_afButtonLast & ( IN_ATTACK | IN_ATTACK2 ) )
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
if( !pPlayer->m_pActiveItem->CanHolster() )
|
if( !pPlayer->m_pActiveItem->CanHolster() )
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
Loading…
Reference in New Issue
Block a user