diff options
| author | Tim <idn.inbox@yahoo.com> | 2013-11-19 16:43:30 +0100 |
|---|---|---|
| committer | Tim <idn.inbox@yahoo.com> | 2013-11-19 16:43:30 +0100 |
| commit | e4bf053ad87be7b9a9a03e32fed7ae7c88ba0566 (patch) | |
| tree | 0b4dc220e1b96bd7730a780a2c3a8c73cf1adc73 | |
| parent | 48eb417ef61bf0a18313231893487d580d2033db (diff) | |
add alternative crafting recipes to turn default chests into a shared chest
| -rw-r--r-- | chest.lua | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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 |
