diff --git a/module/item.js b/module/item.js index 179088f2..35f205bc 100644 --- a/module/item.js +++ b/module/item.js @@ -205,7 +205,7 @@ export class RdDItem extends Item { if (chatData.hasPrice) { if (quantiteEnvoi > 0) chatData.postQuantity = Number(quantiteEnvoi); - if (prixTotal > 0) { + if (prixTotal >= 0) { chatData.postPrice = prixTotal; chatData.data.cout_deniers = Math.floor(prixTotal * 100); // Mise à jour cout en deniers }