Message d'achat par le joueur faisant l'achat

This commit is contained in:
Vincent Vandemeulebrouck 2021-10-30 00:40:35 +02:00
parent 179ec39843
commit a813857d5d
1 changed files with 2 additions and 4 deletions

View File

@ -3617,10 +3617,7 @@ export class RdDActor extends Actor {
return;
}
if (!Misc.isElectedUser()) {
RdDActor.remoteActorCall({
actorId: achat.vendeurId ?? achat.acheteurId,
method: 'achatVente', args: [achat]
});
RdDActor.remoteActorCall({actorId: achat.vendeurId ?? achat.acheteurId, method: 'achatVente', args: [achat]});
return;
}
@ -3678,6 +3675,7 @@ export class RdDActor extends Actor {
const chatAchatItem = duplicate(vente);
chatAchatItem.quantiteTotal = achat.quantiteTotal;
ChatMessage.create({
user: achat.userId,
speaker: {alias: (acheteur ?? vendeur).name} ,
whisper: ChatUtility.getWhisperRecipientsAndGMs(this.name),
content: await renderTemplate('systems/foundryvtt-reve-de-dragon/templates/chat-achat-item.html', chatAchatItem)