Change trees per sec to match saplings

This commit is contained in:
Seth Posner 2022-12-01 15:43:41 -08:00
parent 42a201fe3f
commit e2f48c5bf3

View file

@ -535,8 +535,19 @@ const layer = createLayer(id, function (this: BaseLayer) {
color="green"
style="margin-bottom: 0"
effectDisplay={
Decimal.gt(computedAutoPlantingAmount.value, 0)
? `+${format(computedAutoPlantingAmount.value)}/s`
Decimal.neq(
Decimal.sub(
computedAutoPlantingAmount.value,
computedAutoCuttingAmount.value
),
0
)
? `+${format(
Decimal.sub(
computedAutoPlantingAmount.value,
computedAutoCuttingAmount.value
)
)}/s`
: undefined
}
/>