From a118dc7334846419b1a4fae2733ed8883fa4dff2 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Tue, 11 Jul 2023 02:53:34 +0200 Subject: [PATCH] Correction sur-Encombrement v2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le malus appliqué est maintenant correct. Avant, le malus pouvait avoir une virgule, et donc être arrondi dans le malus vraiment appliqué même si affiché correctement. --- module/actor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/actor.js b/module/actor.js index a909f8b4..ef356895 100644 --- a/module/actor.js +++ b/module/actor.js @@ -1118,7 +1118,7 @@ export class RdDActor extends RdDBaseActor { case 'entite': case 'vehicule': return 0; } - return Math.min(0, this.getEncombrementMax() - Math.round(Number(this.getEncTotal()))); + return Math.min(0, Math.floor(this.getEncombrementMax() - this.encTotal)); } getMessageSurEncombrement() {