script: Replace calls to depreated luaL_openlib

This commit is contained in:
sfan5
2021-05-25 20:20:16 +02:00
parent a12017c564
commit a0047d6edc
17 changed files with 22 additions and 22 deletions

View File

@@ -219,7 +219,7 @@ void LuaCamera::Register(lua_State *L)
lua_pop(L, 1);
luaL_openlib(L, 0, methods, 0);
luaL_register(L, nullptr, methods);
lua_pop(L, 1);
}