mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 08:12:41 +00:00
possibly fix NaN
This commit is contained in:
parent
7b115697a0
commit
7c0e25f139
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
enabled: () => packingResets.value >= 1
|
||||
})),
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier: () => Decimal.sqrt(elfPackingSpeed.apply(1)),
|
||||
multiplier: () => Decimal.sqrt(computedElfPackingSpeed.value).max(1),
|
||||
description: "Jingle Level 5",
|
||||
enabled: management.elfTraining.packingElfTraining.milestones[4].earned
|
||||
}))
|
||||
|
|
Loading…
Reference in a new issue