mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
Merge pull request #4 from thepaperpilot/day-17-toys
why is this in the wrong branch
This commit is contained in:
commit
31c53e0379
3 changed files with 3 additions and 3 deletions
|
@ -956,7 +956,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
createMultiplicativeModifier(() => ({
|
createMultiplicativeModifier(() => ({
|
||||||
multiplier: 50,
|
multiplier: 50,
|
||||||
description: "350 toys",
|
description: "350 toys",
|
||||||
enabled: toys.milestones.milestone4.earned.value
|
enabled: toys.milestones.milestone4.earned
|
||||||
}))
|
}))
|
||||||
]) as WithRequired<Modifier, "description" | "revert">;
|
]) as WithRequired<Modifier, "description" | "revert">;
|
||||||
const computedOilSpeed = computed(() => oilSpeed.apply(0));
|
const computedOilSpeed = computed(() => oilSpeed.apply(0));
|
||||||
|
|
|
@ -378,7 +378,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
createMultiplicativeModifier(() => ({
|
createMultiplicativeModifier(() => ({
|
||||||
multiplier: 50,
|
multiplier: 50,
|
||||||
description: "350 toys",
|
description: "350 toys",
|
||||||
enabled: toys.milestones.milestone4.earned.value
|
enabled: toys.milestones.milestone4.earned
|
||||||
}))
|
}))
|
||||||
]);
|
]);
|
||||||
const computedPlasticGain = computed(() => plasticGain.apply(0));
|
const computedPlasticGain = computed(() => plasticGain.apply(0));
|
||||||
|
|
|
@ -356,7 +356,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
<Spacer />
|
<Spacer />
|
||||||
{renderGrid(row1Upgrades)}
|
{renderGrid(row1Upgrades)}
|
||||||
<Spacer />
|
<Spacer />
|
||||||
<div>You have made {formatWhole(toySum.value)} total toys</div>
|
<div>You have {formatWhole(toySum.value)} toys</div>
|
||||||
{milestonesDisplay()}
|
{milestonesDisplay()}
|
||||||
</>
|
</>
|
||||||
)),
|
)),
|
||||||
|
|
Loading…
Reference in a new issue