mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +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
|
enabled: () => packingResets.value >= 1
|
||||||
})),
|
})),
|
||||||
createMultiplicativeModifier(() => ({
|
createMultiplicativeModifier(() => ({
|
||||||
multiplier: () => Decimal.sqrt(elfPackingSpeed.apply(1)),
|
multiplier: () => Decimal.sqrt(computedElfPackingSpeed.value).max(1),
|
||||||
description: "Jingle Level 5",
|
description: "Jingle Level 5",
|
||||||
enabled: management.elfTraining.packingElfTraining.milestones[4].earned
|
enabled: management.elfTraining.packingElfTraining.milestones[4].earned
|
||||||
}))
|
}))
|
||||||
|
|
Loading…
Reference in a new issue