forgot to add pink to craft helper

This commit is contained in:
Vanessa Dannenberg 2018-08-22 20:06:29 -04:00
parent 5557178cb4
commit d2512952d9
1 changed files with 5 additions and 0 deletions

View File

@ -208,6 +208,9 @@ local function register_c(craft, hue, sat, val)
else
if hue == "white" or hue == "black" or string.find(hue, "grey") then
output = craft.output_prefix.."grey"..craft.output_suffix
elseif hue == "pink" then
dye = "dye:light_red"
output = craft.output_prefix.."red"..craft.output_suffix
else
output = craft.output_prefix..hue..craft.output_suffix
end
@ -261,6 +264,8 @@ function unifieddyes.register_color_craft(craft)
register_c(craft, grey)
end
register_c(craft, "pink")
end
-- code borrowed from homedecor