From 2895b1fd14baac4dedad6b72cba004b35501abfb Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 7 May 2021 17:24:15 -0500 Subject: [PATCH] Added not pattern checking to quarrying. --- mineleader.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mineleader.lua b/mineleader.lua index 52c0550..1db52be 100644 --- a/mineleader.lua +++ b/mineleader.lua @@ -519,11 +519,11 @@ local function listen() determineHeading() elseif data["request"] == QUARRY then if heading ~= nil then - quarry(data["content"][1], data["content"][2], data["content"][3], heading, rightAxis) + quarry(data["content"][1], data["content"][2], data["content"][3], heading, rightAxis, notPattern) sendLog(QUARRY, "Using actual position for quarrying.") else sendLog(QUARRY, "Using relative position for quarrying.") - quarry(data["content"][1], data["content"][2], data["content"][3], relHeading, relRightAxis) + quarry(data["content"][1], data["content"][2], data["content"][3], relHeading, relRightAxis, notPattern) end end end