From ebc0065e32966b2b1dbe94dcccb2590a3c24ce2a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 15 Feb 2004 00:42:45 +0000 Subject: [PATCH] load math, string --- stepmania/src/LuaHelpers.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/LuaHelpers.cpp b/stepmania/src/LuaHelpers.cpp index 0ca2656257..32e58a9b63 100644 --- a/stepmania/src/LuaHelpers.cpp +++ b/stepmania/src/LuaHelpers.cpp @@ -120,6 +120,8 @@ try { lua_atpanic( L, LuaPanic ); luaopen_base( L ); + luaopen_math( L ); + luaopen_string( L ); lua_settop(L, 0); // luaopen_* pushes stuff onto the stack that we don't need Lua::RegisterFunctions( L );