From 68f8c18bc324f9690019ccc09fc69ee2972d3a1d Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 24 Feb 2017 14:28:38 -0500 Subject: [PATCH] get rid of HUES2 table (use string ops to replace it) --- init.lua | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/init.lua b/init.lua index b83ee60..3b32d04 100644 --- a/init.lua +++ b/init.lua @@ -77,21 +77,6 @@ local GREYS = { "black" } -local HUES2 = { - "Red", - "Orange", - "Yellow", - "Lime", - "Green", - "Aqua", - "Cyan", - "Sky-blue", - "Blue", - "Violet", - "Magenta", - "Red-violet" -} - local default_dyes = { "black", "blue", @@ -708,7 +693,13 @@ minetest.register_craft( { for i = 1, 12 do local hue = HUES[i] - local hue2 = HUES2[i] + local hue2 = HUES[i]:gsub("%a", string.upper, 1) + + if hue == "skyblue" then + hue2 = "Sky Blue" + elseif hue == "redviolet" then + hue2 = "Red-violet" + end minetest.register_craft( { type = "shapeless",