From 012b961d8f1d0da55d3ae2bd8999feaa742e6ac1 Mon Sep 17 00:00:00 2001 From: Thomas Rudin Date: Fri, 9 Nov 2018 11:02:22 +0100 Subject: [PATCH] allow quarry to operate in vacuum --- 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 86ca395..0e6efef 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -164,7 +164,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 ~= "vacuum:vacuum" then can_dig = false break end