From d0b66804699f9c65935d36c7356085449b9354fa Mon Sep 17 00:00:00 2001 From: c4nk_ <89845830+c4nkerm3me@users.noreply.github.com> Date: Mon, 24 Jun 2024 01:02:46 +0500 Subject: [PATCH] Fixed the safety roll with ziplines --- beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua b/beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua index 4774bbd..73764cc 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua @@ -141,10 +141,8 @@ local function ZiplineThink(ply, mv, cmd, zipline) if fraction >= 1 or cmd:KeyDown(IN_DUCK) then ply:SetZipline(nil) ply:SetMoveType(MOVETYPE_WALK) - ply:SetCrouchJumpBlocked(true) mv:SetVelocity(dir * speed * 0.75) - mv:SetButtons(0) ply:SetZiplineDelay(CurTime() + 0.75) @@ -282,4 +280,4 @@ if CLIENT then LocalPlayer():StopSound("ZiplineLoop") end end) -end \ No newline at end of file +end