This commit is contained in:
speedvoltage 2025-03-29 21:45:25 -07:00 committed by GitHub
commit b3bf02f849
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1635,7 +1635,7 @@ bool CWeaponRPG::Deploy( void )
return BaseClass::Deploy();
}
bool CWeaponRPG::CanHolster( void )
bool CWeaponRPG::CanHolster( void ) const
{
//Can't have an active missile out
if ( m_hMissile != NULL )

View file

@ -190,7 +190,7 @@ public:
bool WeaponShouldBeLowered( void );
bool Lower( void );
bool CanHolster( void );
bool CanHolster( void ) const;
virtual void Drop( const Vector &vecVelocity );