Fixed the safety roll with ziplines

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

View file

@ -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
end