1
0
mirror of https://github.com/mt-mods/pipeworks.git synced 2024-09-28 07:10:36 +02:00

fix luacheck

This commit is contained in:
unknown 2022-04-15 23:52:38 -04:00
parent 669a8c03b1
commit c225dfad61

View File

@ -66,7 +66,7 @@ local function punch_filter(data, filtpos, filtnode, msg)
if not fromnode then return end if not fromnode then return end
local fromdef = minetest.registered_nodes[fromnode.name] local fromdef = minetest.registered_nodes[fromnode.name]
if not fromdef then return end if not fromdef then return end
local fromtube = fromdef.tube local fromtube = table.copy(fromdef.tube)
local input_special_cases = { local input_special_cases = {
["technic:mv_electric_furnace"] = "dst", ["technic:mv_electric_furnace"] = "dst",
["technic:mv_electric_furnace_active"] = "dst", ["technic:mv_electric_furnace_active"] = "dst",