From bf0f22fdb8618db366163d324d160f043a108340 Mon Sep 17 00:00:00 2001 From: Thomas Rudin Date: Fri, 12 Apr 2019 15:43:03 +0200 Subject: [PATCH] don't check above pos on quarry dig --- technic/machines/HV/quarry.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua index e717641..03cbf3f 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -222,6 +222,7 @@ local function quarry_run(pos, node) end end + --[[ if can_dig then -- test above blocks if diggable for ay = startpos.y, digpos.y+1, -1 do @@ -233,6 +234,8 @@ local function quarry_run(pos, node) end end end + --]] + nd = nd + 1 if can_dig then minetest.remove_node(digpos)