From 727d3541a122795b405208242e6fdf7f8b5add07 Mon Sep 17 00:00:00 2001 From: ame Date: Mon, 29 Jun 2026 05:48:58 -0500 Subject: :detatch fix and math.random --- src/math.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/math.h') diff --git a/src/math.h b/src/math.h index 17e477e..7731831 100644 --- a/src/math.h +++ b/src/math.h @@ -3,11 +3,13 @@ int l_lcm(lua_State*); int l_gcd(lua_State*); +int l_random(lua_State*); #define clean_lullaby_math luaI_nothing static const luaL_Reg math_function_list [] = { {"lcm",l_lcm}, + {"random",l_random}, //{"gcd",l_gcd}, {NULL,NULL} -- cgit v1.2.3