From 46b9cf5fb8f2ff7c43bdade1c41fb8baea4dca1c Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Thu, 29 May 2025 10:55:51 -0400 Subject: [PATCH] whoops --- autogen/lua_constants/built-in.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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