Skip to content

Commit

Permalink
Fixed m3 and added hl2 missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
XutaxKamay committed Sep 15, 2024
1 parent 6bb6199 commit b3bb2ce
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions game/shared/cstrike/weapon_m3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@ class CWeaponM3 : public CWeaponCSBase

virtual CSWeaponID GetWeaponID( void ) const { return WEAPON_M3; }

virtual bool Deploy()
{
bool deployed = BaseClass::Deploy();

if ( deployed )
{
m_flPumpTime = 0;
m_reloadState = 0;
}
return deployed;
}

private:

CWeaponM3( const CWeaponM3 & );
Expand Down
2 changes: 1 addition & 1 deletion gamedata
Submodule gamedata updated from 1cc8d6 to 006c21

0 comments on commit b3bb2ce

Please sign in to comment.