diff options
author | Brett O'Donnell <cornernote@gmail.com> | 2015-08-06 16:03:11 +0930 |
---|---|---|
committer | Brett O'Donnell <cornernote@gmail.com> | 2015-08-06 16:03:11 +0930 |
commit | 570d2cb162bd6d38fddd56f2eade7cc59dfd0f9d (patch) | |
tree | b2a8d16c18b4dd443d1d9dd4a9bc78ab163258d0 /bags.lua | |
parent | 2d6a0ed60689ada1e99970ad1091a1f4af0ab156 (diff) |
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.
Diffstat (limited to 'bags.lua')
-rw-r--r-- | bags.lua | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -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"}, }, }) |