Misinterpreted how star lv 5 should work

This commit is contained in:
thepaperpilot 2022-12-14 20:18:37 -06:00
parent 6d25877e48
commit 2fc424c7e3

View file

@ -166,6 +166,12 @@ const layer = createLayer(id, function (this: BaseLayer) {
style: "width: 600px", style: "width: 600px",
freeLevels: computed(() => freeLevels: computed(() =>
management.elfTraining.paperElfTraining.milestones[4].earned.value && management.elfTraining.paperElfTraining.milestones[4].earned.value &&
Decimal.gte(
Object.values(management.elfTraining).find(
training => training.name === options.elfName
)?.level.value ?? 0,
5
) &&
![ ![
"Star", "Star",
"Bell", "Bell",
@ -175,7 +181,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
"Cocoa", "Cocoa",
"Frosty" "Frosty"
].includes(options.elfName) ].includes(options.elfName)
? Decimal.times(5, management.level5Elves.value) ? 5
: 0 : 0
), ),
totalAmount: computed(() => Decimal.add(buyable.amount.value, buyable.freeLevels.value)) totalAmount: computed(() => Decimal.add(buyable.amount.value, buyable.freeLevels.value))