summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-02-06 21:44:22 -0500
committerGitHub <noreply@github.com>2017-02-06 21:44:22 -0500
commite8529e7742a24290f592011e1b02f336e9cc7e59 (patch)
treef065eedc13b3798e08b4a242ece27069c0432b5c
parent2ea417fad0e09c43b1e3ad31924eb2d27b8876f6 (diff)
parent32090330510e5a79845a8965ef00ff32487d56c8 (diff)
Merge pull request #90 from Wuzzy2/not_in_craft_guide
Replace exclude_from_craft_guide with not_in_craft_guide
-rw-r--r--api.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/api.lua b/api.lua
index e1b980a..2b63922 100644
--- a/api.lua
+++ b/api.lua
@@ -27,7 +27,7 @@ minetest.after(0.01, function()
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)
- or minetest.get_item_group(chk, "exclude_from_craft_guide") ~= 0 then
+ or minetest.get_item_group(chk, "not_in_craft_guide") ~= 0 then
unknowns = true
end
end