From e8a2105c77fe001ff1389363f2a16055269b86d9 Mon Sep 17 00:00:00 2001 From: manuel Date: Fri, 13 Jan 2023 19:24:21 +0000 Subject: [PATCH] Update 'Turtle/wheatDaemon.lua' --- Turtle/wheatDaemon.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Turtle/wheatDaemon.lua b/Turtle/wheatDaemon.lua index 7d95d97..09d50af 100644 --- a/Turtle/wheatDaemon.lua +++ b/Turtle/wheatDaemon.lua @@ -28,9 +28,9 @@ function answer(message, id) wheat:refuel() rednet.send(id, "refueled", "confirm") elseif(message == "getLastHarvestDuration") then - rednet.send(id, tostring(wheat.lastHarvestDuration)) + rednet.send(id, tostring(wheat.lastHarvestDuration), "confirm") elseif(message == "getLastYield") then - rednet.send(id, tostring(wheat.lastYield)) + rednet.send(id, tostring(wheat.lastYield), "confirm") end rednet.send(id, "could not resolve message", "error") end