mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-24 09:21:48 +00:00
Fix access loop
This commit is contained in:
parent
9d0df469e5
commit
28c7ac581b
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
"Mary will automatically purchase heated planters you can afford, without actually spending any coal.",
|
||||
buyable: coal.heatedPlanters,
|
||||
cooldownModifier: heatedPlanterCooldown,
|
||||
buyMax: management.elfTraining.heatedPlanterElfTraining.milestones[2].earned
|
||||
buyMax: () => management.elfTraining.heatedPlanterElfTraining.milestones[2].earned.value
|
||||
});
|
||||
const fertilizerElf = createElf({
|
||||
name: "Noel",
|
||||
|
|
Loading…
Reference in a new issue