Module:FisherList: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
(flounder cannot be deposited, so they fish fewer per hour if selling) |
(miscalculating fish per hour from duration and respawn) |
||
Line 72: | Line 72: | ||
-- products per hour |
-- products per hour |
||
item.batch = 24 |
item.batch = 24 |
||
item.durationEffective = item.duration and item.respawn and item.duration + item.respawn / item.nodes |
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.productPerHour = item.durationEffective and math.floor(1 / (item.durationEffective + item.downtime / item.batch) * 3600) |
||
item.productPerHourDropping = item.durationEffective and 1 / (item.durationEffective) * 3600 |
item.productPerHourDropping = item.durationEffective and 1 / (item.durationEffective) * 3600 |