diff --git a/src/data/layers/boxes.tsx b/src/data/layers/boxes.tsx index 8f13a7a..349364a 100644 --- a/src/data/layers/boxes.tsx +++ b/src/data/layers/boxes.tsx @@ -179,7 +179,7 @@ const layer = createLayer(id, function (this: BaseLayer) { visibility: () => showIf(management.elfTraining.boxElfTraining.milestones[4].earned.value), display: { title: "Carry dye in boxes", - description: "Double all dye gain" + description: "Double all dye gain but reset all dyes" }, onPurchase() { (["red", "yellow", "blue", "orange", "green", "purple"] as const).forEach(dyeColor => { diff --git a/src/data/layers/elves.tsx b/src/data/layers/elves.tsx index 62fbc33..becb7a5 100644 --- a/src/data/layers/elves.tsx +++ b/src/data/layers/elves.tsx @@ -813,7 +813,7 @@ const layer = createLayer(id, function (this: BaseLayer) { name: "Bell", description: "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, visibility: () => showIf(plastic.elfUpgrades.boxElf.bought.value) });