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