From 4a8f7dff5af7aa866a851690cc3278866cf85f20 Mon Sep 17 00:00:00 2001 From: "Jonny_Bro (Nikita)" Date: Mon, 5 Jun 2023 13:56:55 +0500 Subject: [PATCH] wow --- beatrun/gamemodes/beatrun/gamemode/sh/PuristMode.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/PuristMode.lua b/beatrun/gamemodes/beatrun/gamemode/sh/PuristMode.lua index 6cf9ac0..b2b2a8f 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/PuristMode.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/PuristMode.lua @@ -1,14 +1,14 @@ if CLIENT then - PuristMode = CreateClientConVar("Beatrun_PuristMode", "1", true, true, "Purist mode is a clientside preference that severely weakens the ability to strafe while in the air, which is how Mirror's Edge games handle this.\n0 = No restrictions\n1 = Reduced move speed in the air", 0, 1) + CreateClientConVar("Beatrun_PuristMode", "1", true, true, "Purist mode is a clientside preference that severely weakens the ability to strafe while in the air, which is how Mirror's Edge games handle this.\n0 = No restrictions\n1 = Reduced move speed in the air", 0, 1) end local PuristModeForce = CreateConVar("Beatrun_PuristModeForce", 0, {FCVAR_REPLICATED, FCVAR_ARCHIVE}, "Force players to adhere to purist rules", 0, 1) local function PuristMove(ply, mv, cmd) - if not ply:OnGround() and not ply:GetGrappling() then - local purist = PuristMode:GetBool() + local PuristMode = ply:GetConVar("Beatrun_PuristMode") - if (purist or PuristModeForce:GetBool()) and ply:WaterLevel() == 0 then + if not ply:OnGround() and not ply:GetGrappling() then + if (PuristMode:GetBool() or PuristModeForce:GetBool()) and ply:WaterLevel() == 0 then mv:SetForwardSpeed(mv:GetForwardSpeed() * 0.001) mv:SetSideSpeed(mv:GetSideSpeed() * 0.001)