dark grey is also present in unifieddyes

This commit is contained in:
_a 2022-08-23 00:04:42 +00:00
parent 975bee9898
commit cbd41f94d9
1 changed files with 7 additions and 7 deletions

View File

@ -143,12 +143,6 @@ minetest.register_craft({
-- register a few extra dye colour options
minetest.register_craft( {
type = "shapeless",
output = "dye:dark_grey 3",
recipe = {"dye:black", "dye:black", "dye:white"}
})
minetest.register_craft( {
type = "shapeless",
output = "dye:green 4",
@ -161,9 +155,15 @@ minetest.register_craft( {
recipe = {"default:dry_shrub"}
})
-- only add light grey recipe if unifieddye mod isnt present (conflict)
-- only add light/dark grey recipes if unifieddyes mod isnt present (conflict)
if not minetest.get_modpath("unifieddyes") then
minetest.register_craft( {
type = "shapeless",
output = "dye:dark_grey 3",
recipe = {"dye:black", "dye:black", "dye:white"}
})
minetest.register_craft( {
type = "shapeless",
output = "dye:grey 3",