1
0
mirror of https://github.com/D00Med/scifi_nodes.git synced 2025-06-30 23:20:41 +02:00

fix metal plant pot

This commit is contained in:
OgelGames
2021-08-15 17:37:15 +10:00
committed by Buckaroo Banzai
parent 5b9431ea18
commit 85aa74e98b
4 changed files with 67 additions and 72 deletions

View File

@ -1099,6 +1099,22 @@ minetest.register_craft({
}
})
-- wet metal plant pot from dry metal plant pot
minetest.register_craft({
output = "scifi_nodes:pot2",
recipe = {
{"scifi_nodes:pot", "bucket:bucket_water"}
},
replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
})
-- dry metal plant pot from wet metal plant pot
minetest.register_craft({
type = "cooking",
output = "scifi_nodes:pot",
recipe = "scifi_nodes:pot2",
})
-- 6 itemholder from 2 dented metal block and 1 plastic
minetest.register_craft({
output = "scifi_nodes:itemholder 6",