diff options
Diffstat (limited to 'gamemode/client/cl_weaponswitch.lua')
| -rw-r--r-- | gamemode/client/cl_weaponswitch.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gamemode/client/cl_weaponswitch.lua b/gamemode/client/cl_weaponswitch.lua index 5aaed87..f7edcfc 100644 --- a/gamemode/client/cl_weaponswitch.lua +++ b/gamemode/client/cl_weaponswitch.lua @@ -1,3 +1,7 @@ function GM:PlayerSwitchWeapon( ply, oldWeapon, newWeapon ) return false end + +hook.Add( "HUDShouldDraw", "HideWeaponSelHUD", function( name ) + if name == "CHudWeaponSelection" then return false end +end ) |
