From 4241ed4d0304c4558313260ab8d9feee2402656b Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Mon, 3 May 2021 15:30:04 -0500 Subject: [PATCH] Positioning now sends position coords after success. --- mineleader.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/mineleader.lua b/mineleader.lua index c8eac81..da42c51 100644 --- a/mineleader.lua +++ b/mineleader.lua @@ -238,6 +238,7 @@ local function locatePosition() local x, y, z = gps.locate() if x == nil then sendLog(POSITION, "could not locate.") end position = vector.new(x, y, z) + sendLog(POSITION, "Position obtained: " .. tostring(position)) end local function determineHeading()