diff --git a/module/item.js b/module/item.js index 95fadacf..8455a733 100644 --- a/module/item.js +++ b/module/item.js @@ -365,7 +365,7 @@ export class RdDItem extends Item { await item.delete(); } - async quantiteIncDec(nombre, options = { diminuerQuantite: true, supprimerSiZero: false }) { + async quantiteIncDec(nombre, options = { supprimerSiZero: false }) { const quantite = Number(this.system.quantite ?? -1); if (quantite >= 0) { const reste = Math.max(quantite + Number(nombre), 0); @@ -402,7 +402,7 @@ export class RdDItem extends Item { return [false, `Impossible de regrouper ${this.name} avec ${other.name}`]; } else { - const excludedProperties = ['quantite', 'cout', 'encTotal']; + const excludedProperties = ['quantite', 'cout', 'encTotal', 'environnement']; if (this.isComestible()) { excludedProperties.push('sust', 'encombrement'); }