diff options
author | sfan5 <sfan5@live.de> | 2021-05-25 20:20:16 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2021-05-30 11:40:14 +0200 |
commit | a0047d6edcb300afeca16a2a63c5a112082736f3 (patch) | |
tree | 634092331781cca4dd75f1b3885ba57f48a59a3b /src/script/lua_api/l_env.cpp | |
parent | a12017c564782b2645b3020a6b998b116789c7cc (diff) | |
download | minetest-a0047d6edcb300afeca16a2a63c5a112082736f3.tar.gz minetest-a0047d6edcb300afeca16a2a63c5a112082736f3.tar.bz2 minetest-a0047d6edcb300afeca16a2a63c5a112082736f3.zip |
script: Replace calls to depreated luaL_openlib
Diffstat (limited to 'src/script/lua_api/l_env.cpp')
-rw-r--r-- | src/script/lua_api/l_env.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/lua_api/l_env.cpp b/src/script/lua_api/l_env.cpp index c75fc8dc7..39c229ee4 100644 --- a/src/script/lua_api/l_env.cpp +++ b/src/script/lua_api/l_env.cpp @@ -228,7 +228,7 @@ void LuaRaycast::Register(lua_State *L) lua_pop(L, 1); - luaL_openlib(L, 0, methods, 0); + luaL_register(L, nullptr, methods); lua_pop(L, 1); lua_register(L, className, create_object); |