Fix: endurance+1 != max
This commit is contained in:
parent
92d186a4a1
commit
d9c7d4bbcf
@ -980,7 +980,7 @@ export class RdDActor extends Actor {
|
|||||||
}
|
}
|
||||||
newValue = Math.max(0, newValue);
|
newValue = Math.max(0, newValue);
|
||||||
if (inc>0) { // le max d'endurance s'applique seulement à la récupération
|
if (inc>0) { // le max d'endurance s'applique seulement à la récupération
|
||||||
newValue = Math.max(newValue, this._computeEnduranceMax())
|
newValue = Math.min(newValue, this._computeEnduranceMax())
|
||||||
}
|
}
|
||||||
if (data.value - newValue > 1) {
|
if (data.value - newValue > 1) {
|
||||||
this.testSiSonne(sante, newValue); // Peut-être sonné si 2 points d'endurance perdus d'un coup
|
this.testSiSonne(sante, newValue); // Peut-être sonné si 2 points d'endurance perdus d'un coup
|
||||||
|
Loading…
Reference in New Issue
Block a user