This commit is contained in:
Xertis
2024-12-20 23:55:10 +03:00
parent 6018db9c28
commit f4ac84daa2
+1 -1
View File
@@ -52,7 +52,7 @@ function math.rand(low, high)
end end
function math.normalize(num, conf) function math.normalize(num, conf)
conf = conf or 1 conf = conf or 10
return (num / conf) % 1 return (num / conf) % 1
end end