mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-01-31 07:31:37 +00:00
Fix wrapping paper req display
This commit is contained in:
parent
30a5e7d80a
commit
cf56c4aa20
1 changed files with 1 additions and 1 deletions
|
@ -293,7 +293,7 @@ const layer = createLayer(id, () => {
|
|||
}));
|
||||
|
||||
const masteryReq = computed(() =>
|
||||
Decimal.add(masteredDays.value, 1).pow(0.6).times(10).add(120)
|
||||
Decimal.add(masteredDays.value, 1).pow(0.6).times(10).add(120).ceil()
|
||||
);
|
||||
|
||||
const enterMasteryButton = createClickable(() => ({
|
||||
|
|
Loading…
Add table
Reference in a new issue