adjust to follow expanded old-89 palette

(now with 24 hues plus greys, plus the few extra this mod uses)
master
Vanessa Dannenberg 2018-09-12 22:29:00 -04:00
parent 61d24d1f1d
commit 97483c474d
1 changed files with 13 additions and 21 deletions

View File

@ -1,24 +1,7 @@
local hues = {
"red",
"orange",
"yellow",
"lime",
"green",
"aqua",
"cyan",
"skyblue",
"blue",
"violet",
"magenta",
"redviolet",
"pink",
"dark_green",
"brown",
"black",
"dark_grey",
"grey",
"white",
}
local hues = table.copy(unifieddyes.HUES_WITH_GREY)
for _,i in ipairs({"pink","dark_green","brown","black","dark_grey","white"}) do
table.insert(hues, i)
end
local function insulated_wire_get_rules(node)
local rules = {{x = 1, y = 0, z = 0},
@ -477,3 +460,12 @@ for _,color in pairs(hues) do -- allow re-dying of grey wires since they're so l
})
end
end
for _,a in ipairs({{"skyblue","azure"}, {"redviolet","rose"}, {"aqua","spring"}}) do
for _,s in ipairs({"_", "_corner_", "_tjunction_"}) do
minetest.register_alias("mesecons_extrawires:insulated"..s..a[1].."_off",
"mesecons_extrawires:insulated"..s..a[2].."_off")
minetest.register_alias("mesecons_extrawires:insulated"..s..a[1].."_on",
"mesecons_extrawires:insulated"..s..a[2].."_on")
end
end