feat: support items data in base pack

This commit is contained in:
MihailRis
2025-02-18 01:03:34 +03:00
parent 5384843892
commit 3aa7d6ac28
6 changed files with 21 additions and 8 deletions
@@ -208,7 +208,10 @@ static int l_get_all_data(lua::State* L, ItemStack& stack) {
}
static int l_has_data(lua::State* L, ItemStack& stack) {
auto key = lua::require_string(L, 3);
auto key = lua::tostring(L, 3);
if (key == nullptr) {
return lua::pushboolean(L, stack.hasFields());
}
return lua::pushboolean(L, stack.getField(key) != nullptr);
}