mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-01-12 11:00:25 +01:00
add a craft recipe for sponge:sponge
Black dye + white wool + wheat = sponge
This commit is contained in:
parent
0d4a868894
commit
634d2f6aab
@ -89,3 +89,12 @@ minetest.register_node("sponge:sponge_wet", {
|
|||||||
stack_max = 99,
|
stack_max = 99,
|
||||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3},
|
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "sponge:sponge",
|
||||||
|
recipe = {
|
||||||
|
{"", "dye:black", ""},
|
||||||
|
{"", "wool:white", ""},
|
||||||
|
{"", "farming:wheat", ""},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user