mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-06 18:12:14 +00:00
- disabled physgun viewmodel effects
This commit is contained in:
parent
bb106fa0b9
commit
84e4e3c3cc
2 changed files with 5 additions and 0 deletions
|
@ -210,6 +210,8 @@ void ComputeRenderInfo( mstudiobbox_t *pHitBox, const matrix3x4_t &hitboxToWorld
|
|||
//-----------------------------------------------------------------------------
|
||||
int C_WeaponPhysCannon::DrawModel( int flags )
|
||||
{
|
||||
return BaseClass::DrawModel( flags ); // GSTRINGMIGRATION
|
||||
|
||||
// If we're not ugrading, don't do anything special
|
||||
if ( m_bIsCurrentlyUpgrading == false && m_bWasUpgraded == false )
|
||||
return BaseClass::DrawModel( flags );
|
||||
|
|
|
@ -3711,6 +3711,9 @@ void CWeaponPhysCannon::StopEffects( bool stopSound )
|
|||
//-----------------------------------------------------------------------------
|
||||
void CWeaponPhysCannon::StartEffects( void )
|
||||
{
|
||||
return; // GSTRINGMIGRATION
|
||||
|
||||
|
||||
CBasePlayer *pOwner = ToBasePlayer( GetOwner() );
|
||||
if ( pOwner == NULL )
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue