diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-06-20 16:03:38 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-06-20 16:04:00 -0400 |
commit | 0822757382352afe85212c1bc0d495c71840eb90 (patch) | |
tree | d0d024badff1956ea750d9603ce925aa540474b9 | |
parent | ffd03b9c3c099bcf76c6b68201761441890fa1c9 (diff) | |
download | unifieddyes-0822757382352afe85212c1bc0d495c71840eb90.tar unifieddyes-0822757382352afe85212c1bc0d495c71840eb90.tar.gz unifieddyes-0822757382352afe85212c1bc0d495c71840eb90.tar.bz2 unifieddyes-0822757382352afe85212c1bc0d495c71840eb90.tar.xz unifieddyes-0822757382352afe85212c1bc0d495c71840eb90.zip |
add alternate recipe for dark orange
-rw-r--r-- | init.lua | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -963,7 +963,7 @@ for _,i in ipairs(unifieddyes.base_color_crafts) do local firstdye = j[3] if firstdye == "color" then firstdye = "dye:"..color end - -- ignore black, white, anything containing the word "grey", and medium orange + -- ignore black, white, anything containing the word "grey" if color ~= "black" and color ~= "white" and not string.find(color, "grey") then @@ -1028,6 +1028,17 @@ for _, i in ipairs(unifieddyes.greymixes) do }) end +-- we can't make dark orange anymore because brown/medium orange conflicts + +minetest.register_craft( { + type = "shapeless", + output = "dye:dark_orange", + recipe = { + "dye:brown", + "dye:brown" + }, +}) + minetest.register_alias("dye:light_red", "dye:pink") minetest.register_alias("dye:medium_orange", "dye:brown") |