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