mirror of
https://github.com/MadeBaruna/paimon-moe.git
synced 2024-11-23 15:26:40 +01:00
fix ascension star update for char and weapon
This commit is contained in:
parent
a19e90a228
commit
fd3b36ac90
2 changed files with 4 additions and 4 deletions
|
@ -132,7 +132,7 @@
|
|||
minAscension = 0;
|
||||
}
|
||||
|
||||
currentAscension = Math.max(currentAscension, minAscension);
|
||||
currentAscension = minAscension;
|
||||
}
|
||||
|
||||
function updateMinIntendedAscension() {
|
||||
|
@ -152,7 +152,7 @@
|
|||
minIntendedAscension = 0;
|
||||
}
|
||||
|
||||
intendedAscension = Math.max(intendedAscension, minIntendedAscension);
|
||||
intendedAscension = minIntendedAscension;
|
||||
}
|
||||
|
||||
function updateMaxTalentLevel() {
|
||||
|
|
|
@ -135,7 +135,7 @@
|
|||
minAscension = 0;
|
||||
}
|
||||
|
||||
currentAscension = Math.max(currentAscension, minAscension);
|
||||
currentAscension = minAscension;
|
||||
}
|
||||
|
||||
function updateMinIntendedAscension() {
|
||||
|
@ -155,7 +155,7 @@
|
|||
minIntendedAscension = 0;
|
||||
}
|
||||
|
||||
intendedAscension = Math.max(intendedAscension, minIntendedAscension);
|
||||
intendedAscension = minIntendedAscension;
|
||||
}
|
||||
|
||||
function onChange() {
|
||||
|
|
Loading…
Reference in a new issue