This commit is contained in:
2021-12-18 10:06:24 +01:00
parent 1fcc4f60a1
commit aca949ca92
3 changed files with 7 additions and 3 deletions

View File

@ -1316,8 +1316,11 @@ export class RdDActor extends Actor {
/* -------------------------------------------- */
async computeEncombrementTotalEtMalusArmure() {
await this.computeMalusArmure();
return this.computeEncombrement();
if ( !this.pack ) {
await this.computeMalusArmure();
return this.computeEncombrement();
}
return 0;
}
/* -------------------------------------------- */