Fixed "left shift" safety roll.

This commit is contained in:
c4nk_ 2024-06-24 00:41:04 +05:00 committed by GitHub
parent adbea3177d
commit 4b21cc63cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -83,7 +83,7 @@ hook.Add("SetupMove", "Grapple", function(ply, mv, cmd)
ply:SetGrappleLength(mv:GetOrigin():Distance(trout.HitPos))
ply:SetWallrunCount(0)
ply:SetJumpTurn(false)
ply:SetCrouchJumpBlocked(false)
ply:SetCrouchJumpBlocked(true)
ply:SetNW2Entity("grappleEntity", trout.Entity)
ply:SetNW2Bool("grappledNonCourse", true)
@ -126,6 +126,7 @@ hook.Add("SetupMove", "Grapple", function(ply, mv, cmd)
ply:SetNW2Bool("grappledNonCourse", false)
ply:SetGrappling(false)
ply:SetCrouchJumpBlocked(false)
if CLIENT and IsFirstTimePredicted() or game.SinglePlayer() then
ply:EmitSound("mirrorsedge/zipline_detach.wav", 40, 100 + math.random(-25, 10))
@ -336,4 +337,4 @@ local function Swingrope(ply, mv, cmd)
end
end
hook.Add("SetupMove", "Swingrope", Swingrope)
hook.Add("SetupMove", "Swingrope", Swingrope)