mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-03-14 01:51:40 +00:00
implement asdaf's fix
This commit is contained in:
parent
894b37015c
commit
00cb558561
1 changed files with 2 additions and 2 deletions
|
@ -135,10 +135,10 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
},
|
||||
inverseCost(x: DecimalSource) {
|
||||
if (bookUpgrade.bought.value) {
|
||||
x = Decimal.div(x, 10);
|
||||
x = Decimal.mul(x, 10);
|
||||
}
|
||||
if (management.elfTraining.paperElfTraining.milestones[0].earned.value) {
|
||||
x = Decimal.div(x, sumBooks.value.max(1));
|
||||
x = Decimal.mul(x, sumBooks.value.max(1));
|
||||
}
|
||||
|
||||
let scaling = 5;
|
||||
|
|
Loading…
Add table
Reference in a new issue