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:
committed by
Buckaroo Banzai
parent
5b9431ea18
commit
85aa74e98b
16
crafts.lua
16
crafts.lua
@ -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",
|
||||
|
Reference in New Issue
Block a user