Fix: suppression du message si qty=0
This commit is contained in:
parent
b0a97d63ef
commit
401cc86811
@ -3594,7 +3594,7 @@ export class RdDActor extends Actor {
|
|||||||
|
|
||||||
if (!vente.quantiteIllimite) {
|
if (!vente.quantiteIllimite) {
|
||||||
if (vente.quantiteNbLots <= achat.nombreLots) {
|
if (vente.quantiteNbLots <= achat.nombreLots) {
|
||||||
ChatUtility.removeChatMessageId(chatMessageIdVente);
|
ChatUtility.removeChatMessageId(achat.chatMessageIdVente);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
vente["properties"] = new RdDItem(vente.item).getProprietes();
|
vente["properties"] = new RdDItem(vente.item).getProprietes();
|
||||||
|
Loading…
Reference in New Issue
Block a user