Open S4mpsa opened 4 years ago
treesToCut(tier) = Math.ceiling(treesToCut(tier-1) * LOG16(18-tier)) with treesToCut(1) = 1
treesToCut(tier) = Math.ceiling(treesToCut(tier-1) * LOG16(18-tier))
treesToCut(1) = 1
costToCut(tier) = costToCut(tier-1) * 2 with costToCut(1) = 64
costToCut(tier) = costToCut(tier-1) * 2
costToCut(1) = 64
Functions are recursive so suggest implementing as a precalculated array to avoid unnecessary logarithm calculations
Also change the recipe time from 20 ticks to 50 ticks for more balanced output at low energy tiers.
treesToCut(tier) = Math.ceiling(treesToCut(tier-1) * LOG16(18-tier))
withtreesToCut(1) = 1
costToCut(tier) = costToCut(tier-1) * 2
withcostToCut(1) = 64
Functions are recursive so suggest implementing as a precalculated array to avoid unnecessary logarithm calculations
Also change the recipe time from 20 ticks to 50 ticks for more balanced output at low energy tiers.