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 );