diff --git a/utils/math/math.lua b/utils/math/math.lua index 42ef3c5c..bc750a7c 100644 --- a/utils/math/math.lua +++ b/utils/math/math.lua @@ -18,7 +18,7 @@ Public.pi = math.pi Public.deg = math.deg Public.round = math.round -function Public.clamp(min, max, number) +function Public.clamp(number, min, max) if number < min then return min elseif number > max then