update blox, bobblocks, homedecor, plasticbox, solidcolor, stained glass,

unifieddyes, and unifiedmesecons
This commit is contained in:
Vanessa Dannenberg
2018-09-12 23:11:30 -04:00
parent 818eabb92f
commit 02d2154bbd
38 changed files with 54 additions and 344 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