mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-26 02:01:43 +00:00
made Star level 3 not activate at level 1
This commit is contained in:
parent
551aa299f9
commit
894b37015c
1 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
if (Decimal.gte(v, 10000)) v = Decimal.pow(v, 2).div(10000);
|
||||
v = Decimal.pow(0.95, paperBook.totalAmount.value).times(v);
|
||||
let scaling = 5;
|
||||
if (management.elfTraining.paperElfTraining.milestones[0].earned.value) {
|
||||
if (management.elfTraining.paperElfTraining.milestones[2].earned.value) {
|
||||
scaling--;
|
||||
}
|
||||
let cost = Decimal.pow(scaling, v).times(10);
|
||||
|
@ -142,7 +142,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}
|
||||
|
||||
let scaling = 5;
|
||||
if (management.elfTraining.paperElfTraining.milestones[0].earned.value) {
|
||||
if (management.elfTraining.paperElfTraining.milestones[2].earned.value) {
|
||||
scaling--;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue