diff options
author | BadToad2000 <jameson.miller@outlook.com> | 2016-07-17 02:05:29 -0500 |
---|---|---|
committer | BadToad2000 <jameson.miller@outlook.com> | 2016-07-17 02:05:29 -0500 |
commit | 5da8914da9e2ff749dd3a3584e4e721656d1a312 (patch) | |
tree | eda897a637ec961284cf9d6391bff0efab859e4b /api.lua | |
parent | 3cdfdd14a5ac1de36f41981a6ed69b0f9f2fd90d (diff) | |
parent | ea5ffafb9c012d436ac209be32e3d82e35eb21a5 (diff) |
Merge remote-tracking branch 'main/master' into use_smaller_bag
Merging at VenessaE's request to potentially get this change marged into Unified Inventory.
Diffstat (limited to 'api.lua')
-rw-r--r-- | api.lua | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -25,7 +25,8 @@ minetest.after(0.01, function() for _,chk in pairs(recipe.items) do local groupchk = string.find(chk, "group:") if (not groupchk and not minetest.registered_items[chk]) - or (groupchk and not unified_inventory.get_group_item(string.gsub(chk, "group:", "")).item) then + or (groupchk and not unified_inventory.get_group_item(string.gsub(chk, "group:", "")).item) + or minetest.get_item_group(chk, "exclude_from_craft_guide") ~= 0 then unknowns = true end end |