summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-02-26 18:42:41 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-02-26 18:56:12 -0500
commit28043278258d03c1d509e87d9df7c8fd87e62a69 (patch)
tree343ed356142a1000cc1c05152582fc84374f357c
parent315dfb8283868db926b25cedcb637a0a1e235439 (diff)
downloadunifieddyes-28043278258d03c1d509e87d9df7c8fd87e62a69.tar
unifieddyes-28043278258d03c1d509e87d9df7c8fd87e62a69.tar.gz
unifieddyes-28043278258d03c1d509e87d9df7c8fd87e62a69.tar.bz2
unifieddyes-28043278258d03c1d509e87d9df7c8fd87e62a69.tar.xz
unifieddyes-28043278258d03c1d509e87d9df7c8fd87e62a69.zip
get rid of some redundant variables
(just directly reference the table elements instead)
-rw-r--r--init.lua32
1 files changed, 11 insertions, 21 deletions
diff --git a/init.lua b/init.lua
index 540055c..985416c 100644
--- a/init.lua
+++ b/init.lua
@@ -851,44 +851,34 @@ local shade_crafts = {
for _,i in ipairs(base_color_crafts) do
local color = i[1]
- local dye1 = i[2]
- local dye2 = i[3]
- local dye3 = i[4]
- local dye4 = i[5]
- local dye5 = i[6]
local yield = i[7]
minetest.register_craft( {
type = "shapeless",
output = "dye:"..color.." "..yield,
recipe = {
- dye1,
- dye2,
- dye3,
- dye4,
- dye5,
+ i[2],
+ i[3],
+ i[4],
+ i[5],
+ i[6],
},
})
for _,j in ipairs(shade_crafts) do
- local shade = j[1]
- local sat = j[2]
- local dye4 = j[3]
- local dye5 = j[4]
- local dye6 = j[5]
-
- if dye4 == "color" then dye4 = "dye:"..color end
+ local firstdye = j[3]
+ if firstdye == "color" then firstdye = "dye:"..color end
if color ~= "black" and color ~= "white" and not string.find(color, "grey") then
minetest.register_craft( {
type = "shapeless",
- output = "dye:"..shade..color..sat.." "..yield,
+ output = "dye:"..j[1]..color..j[2].." "..yield,
recipe = {
"dye:"..color,
- dye4,
- dye5,
- dye6
+ firstdye,
+ j[4],
+ j[5]
},
})
end