diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua b/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua index 9f05806..dba5510 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua @@ -207,7 +207,7 @@ if SERVER then return 0 end - if speed >= 800 and not ply:InOverdrive() then + if speed >= 800 and not ply:InOverdrive() and not ply:HasGodMode() then if speed < 800 and CurTime() < ply:GetSafetyRollKeyTime() and not ply:GetCrouchJump() and not ply:Crouching() then return 0 else diff --git a/beatrun/gamemodes/beatrun/gamemode/sv/sv_hitsoundsme.lua b/beatrun/gamemodes/beatrun/gamemode/sv/sv_hitsoundsme.lua index 6bc9dc3..c34ae83 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sv/sv_hitsoundsme.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sv/sv_hitsoundsme.lua @@ -9,7 +9,7 @@ hook.Add("EntityTakeDamage", "MEHitSounds", function(ply, dmginfo) ply:EmitSound("mirrorsedge/Flesh_0" .. tostring(math.random(1, 9)) .. ".wav") ply:ViewPunch(Angle(math.Rand(-10, -5), 0, math.Rand(0, 5))) - elseif (dmginfo:IsFallDamage() and ply:Health() - dmginfo:GetDamage() <= 0) and not ply:HasGodMode() and not blinded then + elseif dmginfo:IsFallDamage() and not ply:HasGodMode() then net.Start("DeathStopSound") net.Send(ply)