Localize a couple of accidental global variables
This commit is contained in:
parent
54c08aa94a
commit
04593eca08
7 changed files with 7 additions and 8 deletions
|
@ -416,7 +416,7 @@ minetest.register_node("mcl_dispensers:dispenser_down", down_def)
|
|||
|
||||
-- Up dispenser
|
||||
-- The up dispenser is almost identical to the down dispenser , it only differs in textures
|
||||
up_def = table.copy(down_def)
|
||||
local up_def = table.copy(down_def)
|
||||
up_def.description = "Upwards-Facing Dispenser"
|
||||
up_def.tiles = {
|
||||
"mcl_dispensers_dispenser_front_vertical.png", "default_furnace_bottom.png",
|
||||
|
|
|
@ -137,7 +137,7 @@ minetest.register_node("mcl_droppers:dropper_down", down_def)
|
|||
|
||||
-- Up dropper
|
||||
-- The up dropper is almost identical to the down dropper, it only differs in textures
|
||||
up_def = table.copy(down_def)
|
||||
local up_def = table.copy(down_def)
|
||||
up_def.description = "Upwards-Facing Dropper"
|
||||
up_def.tiles = {
|
||||
"mcl_droppers_dropper_front_vertical.png", "default_furnace_bottom.png",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue