Dont recalculate manual input pity

Fix #279
pull/1/head
Made Baruna 2022-07-13 04:50:05 +07:00
parent 49417996b4
commit 59d6aaf006
1 changed files with 10 additions and 2 deletions

View File

@ -510,7 +510,11 @@
}
latestLegendary = combined[i];
combined[i].pity = legendary;
if (combined[i].manualInput !== true) {
combined[i].pity = legendary;
}
legendary = 0;
// rare = 0;
} else if (rarity === 4) {
@ -531,7 +535,11 @@
}
latestRare = combined[i];
combined[i].pity = rare;
if (combined[i].manualInput !== true) {
combined[i].pity = rare;
}
rare = 0;
} else {
combined[i].pity = 1;