Update 'Controller/CropController.lua'

This commit is contained in:
manuel 2023-01-13 20:23:47 +00:00
parent 070f33ac80
commit 326814c092

View File

@ -1,12 +1,11 @@
CropController = {}
CropController.interval = 900
function CropController:new(t)
t = t or {}
setmetatable(t, self)
self.__index = self
t.matrix = {}
t.stats = {}
t.stats = {interval = 900}
return t
end
@ -151,11 +150,11 @@ function CropController:harvest()
self:doAction(self.slaveID, "harvest")
local s, duration = self:doAction(self.slaveID, "getLastHarvestDuration")
if s == true then
self.stats.lastHarvestDuration = duration
self.stats["Last harvest duration"] = duration
end
local s, yield = self:doAction(self.slaveID, "getLastYield")
if s == true then
self.stats.lastYield = yield
self.stats["Last yield"] = yield
end
self:getMatrix()
end