13 lines
317 B
Lua
13 lines
317 B
Lua
-- If bakedclay loaded then remove "dye:grey 3" craft recipe
|
|
-- in order to avoid unifieddyes conflict
|
|
|
|
minetest.clear_craft({output = "dye:grey"})
|
|
minetest.register_craft(
|
|
{
|
|
type = "shapeless",
|
|
output = "dye:grey 2",
|
|
recipe = {"dye:black", "dye:white"}
|
|
})
|
|
|
|
minetest.log("action", "[nalc_bakedclay] loaded.")
|