mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 16:35:46 +00:00
Fix max schools display
This commit is contained in:
parent
4a14c2891e
commit
9126ae76ac
1 changed files with 3 additions and 2 deletions
|
@ -185,7 +185,7 @@ const layer = createLayer(id, () => {
|
||||||
});
|
});
|
||||||
const expRequiredForNextLevel = computed(() =>
|
const expRequiredForNextLevel = computed(() =>
|
||||||
Decimal.pow(5, level.value).mul(costBase.value)
|
Decimal.pow(5, level.value).mul(costBase.value)
|
||||||
)
|
);
|
||||||
const level = computed(() =>
|
const level = computed(() =>
|
||||||
Decimal.affordGeometricSeries(exp.value, costBase.value, 5, 0)
|
Decimal.affordGeometricSeries(exp.value, costBase.value, 5, 0)
|
||||||
.min(schools.amount.value)
|
.min(schools.amount.value)
|
||||||
|
@ -1396,7 +1396,8 @@ const layer = createLayer(id, () => {
|
||||||
<h3>Build a School</h3>
|
<h3>Build a School</h3>
|
||||||
<div>
|
<div>
|
||||||
You gotta start somewhere, right? Each school increases the maximum level for
|
You gotta start somewhere, right? Each school increases the maximum level for
|
||||||
elves by 1, maximum of {main.days[13].opened.value ? 5 : 3} schools.
|
elves by 1, maximum of {main.days[advancedDay - 1].opened.value ? 5 : 3}{" "}
|
||||||
|
schools.
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
You have {formatWhole(schools.amount.value)} schools, which are currently
|
You have {formatWhole(schools.amount.value)} schools, which are currently
|
||||||
|
|
Loading…
Reference in a new issue