diff --git a/module/actor.js b/module/actor.js index 1e89f187..bcf27b38 100644 --- a/module/actor.js +++ b/module/actor.js @@ -2111,8 +2111,10 @@ export class RdDActor extends Actor { } } - // Notification au MJ - ChatMessage.create({ content: this.name + " est monté dans les TMR en mode : " + mode, whisper: ChatMessage.getWhisperRecipients("GM") }); + if (mode != 'visu') { + // Notification au MJ + ChatMessage.create({ content: this.name + " est monté dans les TMR en mode : " + mode, whisper: ChatMessage.getWhisperRecipients("GM") }); + } let data = { fatigue: { diff --git a/module/rdd-tmr-dialog.js b/module/rdd-tmr-dialog.js index 4e827961..226649ff 100644 --- a/module/rdd-tmr-dialog.js +++ b/module/rdd-tmr-dialog.js @@ -61,8 +61,9 @@ export class RdDTMRDialog extends Dialog { this.actor.santeIncDec("fatigue", this.nbFatigue).then(super.close()); // moving 1 cell costs 1 fatigue this.actor.tmrApp = undefined; // Cleanup reference this.actor.setStatusDemiReve(false); - - this._tellToGM(this.actor.name + " a quitté les terres médianes") + if (! this.viewOnly) { + this._tellToGM(this.actor.name + " a quitté les terres médianes"); + } } /* -------------------------------------------- */