@@ -73,7 +73,7 @@ dyelocal.dyes = {
73
73
{" dark_green" , " Dark green dye" ,{dye = 1 , basecolor_green = 1 , excolor_green = 1 , unicolor_dark_green = 1 }},
74
74
{" green" , " Green dye" , {dye = 1 , basecolor_green = 1 , excolor_green = 1 , unicolor_green = 1 }},
75
75
{" yellow" , " Yellow dye" , {dye = 1 , basecolor_yellow = 1 , excolor_yellow = 1 , unicolor_yellow = 1 }},
76
- {" brown" , " Brown dye" , {dye = 1 , basecolor_yellow = 1 , excolor_orange = 1 , unicolor_dark_orange = 1 }},
76
+ {" brown" , " Brown dye" , {dye = 1 , basecolor_brown = 1 , excolor_orange = 1 , unicolor_dark_orange = 1 }},
77
77
{" orange" , " Orange dye" , {dye = 1 , basecolor_orange = 1 , excolor_orange = 1 , unicolor_orange = 1 }},
78
78
{" red" , " Red dye" , {dye = 1 , basecolor_red = 1 , excolor_red = 1 , unicolor_red = 1 }},
79
79
{" magenta" , " Magenta dye" , {dye = 1 , basecolor_magenta = 1 , excolor_red_violet = 1 ,unicolor_red_violet = 1 }},
@@ -98,6 +98,12 @@ for _, row in ipairs(dyelocal.dyes) do
98
98
recipe = {" group:flower,color_" .. name },
99
99
})
100
100
end
101
+ -- manually add coal->black dye
102
+ minetest .register_craft ({
103
+ type = " shapeless" ,
104
+ output = " dye:black 4" ,
105
+ recipe = {" group:coal" },
106
+ })
101
107
102
108
-- Mix recipes
103
109
-- Just mix everything to everything somehow sanely
0 commit comments