mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-06 10:56:34 +05:00
Fixed "left shift" safety roll.
This commit is contained in:
parent
adbea3177d
commit
4b21cc63cf
1 changed files with 3 additions and 2 deletions
|
@ -83,7 +83,7 @@ hook.Add("SetupMove", "Grapple", function(ply, mv, cmd)
|
||||||
ply:SetGrappleLength(mv:GetOrigin():Distance(trout.HitPos))
|
ply:SetGrappleLength(mv:GetOrigin():Distance(trout.HitPos))
|
||||||
ply:SetWallrunCount(0)
|
ply:SetWallrunCount(0)
|
||||||
ply:SetJumpTurn(false)
|
ply:SetJumpTurn(false)
|
||||||
ply:SetCrouchJumpBlocked(false)
|
ply:SetCrouchJumpBlocked(true)
|
||||||
ply:SetNW2Entity("grappleEntity", trout.Entity)
|
ply:SetNW2Entity("grappleEntity", trout.Entity)
|
||||||
ply:SetNW2Bool("grappledNonCourse", true)
|
ply:SetNW2Bool("grappledNonCourse", true)
|
||||||
|
|
||||||
|
@ -126,6 +126,7 @@ hook.Add("SetupMove", "Grapple", function(ply, mv, cmd)
|
||||||
ply:SetNW2Bool("grappledNonCourse", false)
|
ply:SetNW2Bool("grappledNonCourse", false)
|
||||||
|
|
||||||
ply:SetGrappling(false)
|
ply:SetGrappling(false)
|
||||||
|
ply:SetCrouchJumpBlocked(false)
|
||||||
|
|
||||||
if CLIENT and IsFirstTimePredicted() or game.SinglePlayer() then
|
if CLIENT and IsFirstTimePredicted() or game.SinglePlayer() then
|
||||||
ply:EmitSound("mirrorsedge/zipline_detach.wav", 40, 100 + math.random(-25, 10))
|
ply:EmitSound("mirrorsedge/zipline_detach.wav", 40, 100 + math.random(-25, 10))
|
||||||
|
@ -336,4 +337,4 @@ local function Swingrope(ply, mv, cmd)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
hook.Add("SetupMove", "Swingrope", Swingrope)
|
hook.Add("SetupMove", "Swingrope", Swingrope)
|
||||||
|
|
Loading…
Add table
Reference in a new issue