diff --git a/autogen/lua_constants/built-in.lua b/autogen/lua_constants/built-in.lua index 3ae0d1be5..d02329b10 100644 --- a/autogen/lua_constants/built-in.lua +++ b/autogen/lua_constants/built-in.lua @@ -248,5 +248,5 @@ end --- @param x number --- Rounds `x` to the nearest integer value function math.round(x) - return x > 0 and math.floor(x + 0.5) or math.ceil(x - 0.5) + return x > 0 and __math_floor(x + 0.5) or __math_ceil(x - 0.5) end \ No newline at end of file