]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/script/lua_api/l_itemstackmeta.cpp
Async-related script cleanups
[dragonfireclient.git] / src / script / lua_api / l_itemstackmeta.cpp
index 07ab864992989bf6c5b5e407415720094443e7bf..739fb92211a3359831f5c84c9ab604c6342def16 100644 (file)
@@ -46,7 +46,7 @@ void ItemStackMetaRef::clearMeta()
        istack->metadata.clear();
 }
 
-void ItemStackMetaRef::reportMetadataChange()
+void ItemStackMetaRef::reportMetadataChange(const std::string *name)
 {
        // TODO
 }
@@ -114,7 +114,7 @@ void ItemStackMetaRef::Register(lua_State *L)
 
        lua_pop(L, 1);  // drop metatable
 
-       luaL_openlib(L, 0, methods, 0);  // fill methodtable
+       luaL_register(L, nullptr, methods);  // fill methodtable
        lua_pop(L, 1);  // drop methodtable
 
        // Cannot be created from Lua