mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-06 10:56:34 +05:00
Fixed the safety roll with ziplines
This commit is contained in:
parent
4b21cc63cf
commit
d0b6680469
1 changed files with 1 additions and 3 deletions
|
@ -141,10 +141,8 @@ local function ZiplineThink(ply, mv, cmd, zipline)
|
||||||
if fraction >= 1 or cmd:KeyDown(IN_DUCK) then
|
if fraction >= 1 or cmd:KeyDown(IN_DUCK) then
|
||||||
ply:SetZipline(nil)
|
ply:SetZipline(nil)
|
||||||
ply:SetMoveType(MOVETYPE_WALK)
|
ply:SetMoveType(MOVETYPE_WALK)
|
||||||
ply:SetCrouchJumpBlocked(true)
|
|
||||||
|
|
||||||
mv:SetVelocity(dir * speed * 0.75)
|
mv:SetVelocity(dir * speed * 0.75)
|
||||||
mv:SetButtons(0)
|
|
||||||
|
|
||||||
ply:SetZiplineDelay(CurTime() + 0.75)
|
ply:SetZiplineDelay(CurTime() + 0.75)
|
||||||
|
|
||||||
|
@ -282,4 +280,4 @@ if CLIENT then
|
||||||
LocalPlayer():StopSound("ZiplineLoop")
|
LocalPlayer():StopSound("ZiplineLoop")
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue