translate new dye names to old for 89-color palette check

This commit is contained in:
Vanessa Ezekowitz 2017-02-24 18:48:02 -05:00
parent 50013d21d1
commit cf89bc6a24
1 changed files with 12 additions and 0 deletions

View File

@ -472,6 +472,18 @@ function unifieddyes.getpaletteidx(color, palette_type)
return (hues_extended[color] + shades_extended[shade]*24), hues_extended[color]
end
else -- it's the 89-color palette
-- If using this palette, translate new color names back to old.
if shade == "" then
if color == "spring" then
color = "aqua"
elseif color == "azure" then
color = "skyblue"
elseif color == "rose" then
color = "redviolet"
end
end
if hues[color] and shades[shade] then
return (hues[color] * 8 + shades[shade]), hues[color]
end