summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim <idn.inbox@yahoo.com>2013-11-19 16:43:30 +0100
committerTim <idn.inbox@yahoo.com>2013-11-19 16:43:30 +0100
commite4bf053ad87be7b9a9a03e32fed7ae7c88ba0566 (patch)
tree0b4dc220e1b96bd7730a780a2c3a8c73cf1adc73
parent48eb417ef61bf0a18313231893487d580d2033db (diff)
add alternative crafting recipes to turn default chests into a shared chest
-rw-r--r--chest.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/chest.lua b/chest.lua
index 07bf186..9f4e440 100644
--- a/chest.lua
+++ b/chest.lua
@@ -90,4 +90,20 @@ minetest.register_craft({
{'default:wood','landrush:landclaim','default:wood'},
{'default:wood','default:wood','default:wood'}
}
+})
+
+minetest.register_craft({
+ output = 'landrush:shared_chest',
+ recipe = {
+ {'landrush:landclaim'},
+ {'default:chest'}
+ }
+})
+
+minetest.register_craft({
+ output = 'landrush:shared_chest',
+ recipe = {
+ {'landrush:landclaim'},
+ {'default:chest_locked'}
+ }
}) \ No newline at end of file