boxes fixes

This commit is contained in:
thepaperpilot 2022-12-14 20:34:02 -06:00
parent a3453b84ac
commit eb8a4166f4
2 changed files with 2 additions and 2 deletions

View file

@ -179,7 +179,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
visibility: () => showIf(management.elfTraining.boxElfTraining.milestones[4].earned.value), visibility: () => showIf(management.elfTraining.boxElfTraining.milestones[4].earned.value),
display: { display: {
title: "Carry dye in boxes", title: "Carry dye in boxes",
description: "Double all dye gain" description: "Double all dye gain but reset all dyes"
}, },
onPurchase() { onPurchase() {
(["red", "yellow", "blue", "orange", "green", "purple"] as const).forEach(dyeColor => { (["red", "yellow", "blue", "orange", "green", "purple"] as const).forEach(dyeColor => {

View file

@ -813,7 +813,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
name: "Bell", name: "Bell",
description: description:
"Bell will automatically purchase all box buyables you can afford, without actually spending any boxes.", "Bell will automatically purchase all box buyables you can afford, without actually spending any boxes.",
buyable: Object.values(boxes.buyables), buyable: [...Object.values(boxes.buyables), ...Object.values(boxes.buyables2)],
cooldownModifier: boxCooldown, cooldownModifier: boxCooldown,
visibility: () => showIf(plastic.elfUpgrades.boxElf.bought.value) visibility: () => showIf(plastic.elfUpgrades.boxElf.bought.value)
}); });