Disable GMod death sound

This commit is contained in:
Fesiug 2023-11-06 14:03:24 -05:00
parent 79ca331ada
commit c3d5516aa8
1 changed files with 4 additions and 0 deletions

View File

@ -143,6 +143,10 @@ if CLIENT then
end)
end
hook.Add( "PlayerDeathSound", "Benny_PlayerDeathSound", function( ply )
return true -- we don't want the default sound!
end )
function GM:ShowHelp( ply )
if SERVER then
ply:SendLua( [[OpenSMenu()]] )