mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-03-14 01:51:40 +00:00
Fixed 3 elves milestone decreasing coal production
This commit is contained in:
parent
0af5acd630
commit
2be480d4ec
1 changed files with 3 additions and 1 deletions
|
@ -586,7 +586,9 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
createExponentialModifier(() => ({
|
||||
exponent: 1.25,
|
||||
description: "3 Elves Trained",
|
||||
enabled: elves.milestones[2].earned
|
||||
enabled () {
|
||||
return elves.milestones[2].earned.value && Decimal.gte(coal.value, 1)
|
||||
}
|
||||
}))
|
||||
]);
|
||||
const computedCoalGain = computed(() => coalGain.apply(0));
|
||||
|
|
Loading…
Add table
Reference in a new issue