forked from mtcontrib/pipeworks
Change scope of local variable 'nodecolor': (#185)
Fixes warning about undefined global.
This commit is contained in:
parent
69d994a2a2
commit
2eff6e36ea
@ -10,6 +10,8 @@ minetest.register_craft( {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
local nodecolor = 0xffff3030
|
||||||
|
|
||||||
pipeworks.register_tube("pipeworks:broken_tube", {
|
pipeworks.register_tube("pipeworks:broken_tube", {
|
||||||
description = "Broken Tube (you hacker you)",
|
description = "Broken Tube (you hacker you)",
|
||||||
plain = { { name = "pipeworks_broken_tube_plain.png", backface_culling = false, color = nodecolor } },
|
plain = { { name = "pipeworks_broken_tube_plain.png", backface_culling = false, color = nodecolor } },
|
||||||
@ -66,7 +68,6 @@ pipeworks.register_tube("pipeworks:broken_tube", {
|
|||||||
-- without doing actual sorting, like at outputs of tubedevices that might both accept and eject items
|
-- without doing actual sorting, like at outputs of tubedevices that might both accept and eject items
|
||||||
if pipeworks.enable_priority_tube then
|
if pipeworks.enable_priority_tube then
|
||||||
local color = "#ff3030:128"
|
local color = "#ff3030:128"
|
||||||
local nodecolor = 0xffff3030
|
|
||||||
pipeworks.register_tube("pipeworks:priority_tube", {
|
pipeworks.register_tube("pipeworks:priority_tube", {
|
||||||
description = "High Priority Tube Segment",
|
description = "High Priority Tube Segment",
|
||||||
inventory_image = "pipeworks_tube_inv.png^[colorize:" .. color,
|
inventory_image = "pipeworks_tube_inv.png^[colorize:" .. color,
|
||||||
|
Loading…
Reference in New Issue
Block a user