From 01469174b5ac16502b514ea16716cfa3e34b99f3 Mon Sep 17 00:00:00 2001 From: yodabear1 <66749331+yodabear1@users.noreply.github.com> Date: Fri, 18 Sep 2020 02:00:37 +0200 Subject: [PATCH] Update quarry.lua walking_light adds enhanced torches by adding virtual light sources. let's tread them like air. --- technic/machines/HV/quarry.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua index 9cf378f..13f82bb 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -169,7 +169,7 @@ local function quarry_run(pos, node) for ay = startpos.y, digpos.y+1, -1 do local checkpos = {x=digpos.x, y=ay, z=digpos.z} local checknode = technic.get_or_load_node(checkpos) or minetest.get_node(checkpos) - if checknode.name ~= "air" then + if checknode.name ~= "air" and checknode.name ~= "walking_light:light" then can_dig = false break end