From 7e44199ce980dcfdb537c5956d7e477f1778212a Mon Sep 17 00:00:00 2001 From: shen Date: Fri, 7 Jun 2024 10:56:52 +0300 Subject: [PATCH] I've changed my mind --- beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua b/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua index cc2d6e7..9279c3f 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua @@ -42,7 +42,7 @@ local function SafetyRollThink(ply, mv, cmd) local speedLimit = GetConVar("Beatrun_SpeedLimit"):GetFloat() if (con:GetBool()) then - mv:SetVelocity(ang:Forward() * (speedLimit / 2) + vel) + mv:SetVelocity(ang:Forward() * 250 + vel) else local max = math.max(250, math.Clamp(lastGroundSpeed, 200, speedLimit + 50)) mv:SetVelocity(ang:Forward() * (max + 40))