From f8ac9c45d15ab3b7a17f86c16c2ec2b47e8a94c2 Mon Sep 17 00:00:00 2001 From: Jean-Patrick Guerrero Date: Mon, 18 Oct 2021 21:21:33 +0200 Subject: [PATCH] Add i3.get_recipes() --- API.md | 4 ++++ init.lua | 12 +++++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/API.md b/API.md index 9216d22..64b0db9 100644 --- a/API.md +++ b/API.md @@ -241,6 +241,10 @@ Returns a map of search filters, indexed by name. ### Miscellaneous +#### `i3.get_recipes(item)` + +Returns a table of recipes and usages of given `item` name. + #### `i3.export_url` If set, the mod will export all the cached recipes and usages in a JSON format diff --git a/init.lua b/init.lua index 613e366..2c6a634 100644 --- a/init.lua +++ b/init.lua @@ -807,6 +807,13 @@ local function cache_recipes(item) end end +function i3.get_recipes(item) + return { + recipes = recipes_cache[item], + usages = usages_cache[item] + } +end + local function get_recipes(player, item) local clean_item = reg_aliases[item] or item local recipes = recipes_cache[clean_item] @@ -2966,7 +2973,7 @@ local function init_backpack(player) local empty = _inv:get_stack(listname, 1):is_empty() local item_group = minetest.get_item_group(stack:get_name(), "bag") - if empty and item_group > 0 and item_group < 4 then + if empty and item_group > 0 and item_group <= #BAG_SIZES then return 1 end @@ -2995,9 +3002,8 @@ local function init_backpack(player) data.bag_item = nil data.bag_size = nil - - inv:set_size("main", INV_SIZE) + inv:set_size("main", INV_SIZE) set_fs(player) end, })