fix ascension star update for char and weapon
parent
a19e90a228
commit
fd3b36ac90
|
@ -132,7 +132,7 @@
|
||||||
minAscension = 0;
|
minAscension = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
currentAscension = Math.max(currentAscension, minAscension);
|
currentAscension = minAscension;
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateMinIntendedAscension() {
|
function updateMinIntendedAscension() {
|
||||||
|
@ -152,7 +152,7 @@
|
||||||
minIntendedAscension = 0;
|
minIntendedAscension = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
intendedAscension = Math.max(intendedAscension, minIntendedAscension);
|
intendedAscension = minIntendedAscension;
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateMaxTalentLevel() {
|
function updateMaxTalentLevel() {
|
||||||
|
|
|
@ -135,7 +135,7 @@
|
||||||
minAscension = 0;
|
minAscension = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
currentAscension = Math.max(currentAscension, minAscension);
|
currentAscension = minAscension;
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateMinIntendedAscension() {
|
function updateMinIntendedAscension() {
|
||||||
|
@ -155,7 +155,7 @@
|
||||||
minIntendedAscension = 0;
|
minIntendedAscension = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
intendedAscension = Math.max(intendedAscension, minIntendedAscension);
|
intendedAscension = minIntendedAscension;
|
||||||
}
|
}
|
||||||
|
|
||||||
function onChange() {
|
function onChange() {
|
||||||
|
|
Loading…
Reference in New Issue