From 2bbba952a8e43b1c62a051c2edbd93300316d769 Mon Sep 17 00:00:00 2001 From: Lam Hung Date: Fri, 3 Nov 2023 19:18:28 +0700 Subject: [PATCH] Change speedometer to 2D --- beatrun/gamemodes/beatrun/gamemode/sh/Checkpoints.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/Checkpoints.lua b/beatrun/gamemodes/beatrun/gamemode/sh/Checkpoints.lua index d0f993d..5b17147 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/Checkpoints.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/Checkpoints.lua @@ -241,7 +241,7 @@ function CourseHUD() end if GetConVar("Beatrun_HUDHidden") and not GetConVar("Beatrun_HUDHidden"):GetBool() and not BuildMode and hook.Run("BeatrunDrawHUD") ~= false and not ply.InReplay then - local speed = math.Round(ply:GetVelocity():Length() * 0.06858125) + local speed = math.Round(ply:GetVelocity():Length2D() * 0.06858125) -- 2D speed, ME-style (:Length2D() instead of just :Length()) if speed < 10 then speed = "0" .. speed