From 570d2cb162bd6d38fddd56f2eade7cc59dfd0f9d Mon Sep 17 00:00:00 2001 From: Brett O'Donnell Date: Thu, 6 Aug 2015 16:03:11 +0930 Subject: [PATCH] peoposed update for bag recipies when bags was first created, wool and farming were not in minetest_game, and so that people didnt have a load of dependancies I made the recipe from wood and sticks. now that wool and cotton are available it makes a lot more sense to craft the bags from these items. they are harder to obtain, but bags are valuable items in game, so i think the extra effort to obtain the items is justified. --- bags.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/bags.lua b/bags.lua index 4bc9d5c..83df71c 100644 --- a/bags.lua +++ b/bags.lua @@ -127,27 +127,27 @@ minetest.register_tool("unified_inventory:bag_large", { minetest.register_craft({ output = "unified_inventory:bag_small", recipe = { - {"", "group:stick", ""}, - {"group:wood", "group:wood", "group:wood"}, - {"group:wood", "group:wood", "group:wood"}, + {"", "farming:cotton", ""}, + {"group:wool", "group:wool", "group:wool"}, + {"group:wool", "group:wool", "group:wool"}, }, }) minetest.register_craft({ output = "unified_inventory:bag_medium", recipe = { - {"", "", ""}, - {"group:stick", "unified_inventory:bag_small", "group:stick"}, - {"group:stick", "unified_inventory:bag_small", "group:stick"}, + {"", "", ""}, + {"farming:cotton", "unified_inventory:bag_small", "farming:cotton"}, + {"farming:cotton", "unified_inventory:bag_small", "farming:cotton"}, }, }) minetest.register_craft({ output = "unified_inventory:bag_large", recipe = { - {"", "", ""}, - {"group:stick", "unified_inventory:bag_medium", "group:stick"}, - {"group:stick", "unified_inventory:bag_medium", "group:stick"}, + {"", "", ""}, + {"farming:cotton", "unified_inventory:bag_medium", "farming:cotton"}, + {"farming:cotton", "unified_inventory:bag_medium", "farming:cotton"}, }, })