mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-03-20 21:30:29 +00:00
Change trees per sec to match saplings
This commit is contained in:
parent
42a201fe3f
commit
e2f48c5bf3
1 changed files with 13 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
/>
|
||||
|
|
Loading…
Add table
Reference in a new issue