summaryrefslogtreecommitdiff
path: root/bags.lua
diff options
context:
space:
mode:
authorBrett O'Donnell <cornernote@gmail.com>2015-08-06 16:03:11 +0930
committerBrett O'Donnell <cornernote@gmail.com>2015-08-06 16:03:11 +0930
commit570d2cb162bd6d38fddd56f2eade7cc59dfd0f9d (patch)
treeb2a8d16c18b4dd443d1d9dd4a9bc78ab163258d0 /bags.lua
parent2d6a0ed60689ada1e99970ad1091a1f4af0ab156 (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.lua18
1 files 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"},
},
})