- disabled physgun viewmodel effects

This commit is contained in:
Biohazard 2013-09-29 18:02:35 +02:00
parent bb106fa0b9
commit 84e4e3c3cc
2 changed files with 5 additions and 0 deletions

View file

@ -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 );

View file

@ -3711,6 +3711,9 @@ void CWeaponPhysCannon::StopEffects( bool stopSound )
//-----------------------------------------------------------------------------
void CWeaponPhysCannon::StartEffects( void )
{
return; // GSTRINGMIGRATION
CBasePlayer *pOwner = ToBasePlayer( GetOwner() );
if ( pOwner == NULL )
return;