Module:ForagerList: Difference between revisions
m
miscalculating fish per hour from duration and respawn
(include all the downtime calculations) |
m (miscalculating fish per hour from duration and respawn) |
||
Line 94:
-- products per hour
item.batch = 24
item.durationEffective = item.duration and item.respawn and (item.duration + item.respawn) / item.nodes
item.productPerHour = item.durationEffective and math.floor(1 / (item.durationEffective + item.downtime / item.batch) * 3600)
item.productPerHourDropping = item.durationEffective and 1 / (item.durationEffective) * 3600
|