From b372286a691f62cbfa36390aac8ac634abb8471c Mon Sep 17 00:00:00 2001 From: Xertis <118364459+Xertis@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:44:25 +0300 Subject: [PATCH] changing the standard conf to 1 --- res/scripts/stdmin.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/scripts/stdmin.lua b/res/scripts/stdmin.lua index 56b11639..72383dce 100644 --- a/res/scripts/stdmin.lua +++ b/res/scripts/stdmin.lua @@ -52,7 +52,7 @@ function math.rand(low, high) end function math.normalize(num, conf) - conf = conf or 10 + conf = conf or 1 return (num / conf) % 1 end