From f24f222d0d96fa711dc4f71caaf090364909abed Mon Sep 17 00:00:00 2001 From: ultimafia-bot Date: Sun, 17 Dec 2023 00:16:10 +0000 Subject: [PATCH] run prettier --- Games/types/Mafia/roles/cards/GuessRole.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Games/types/Mafia/roles/cards/GuessRole.js b/Games/types/Mafia/roles/cards/GuessRole.js index c1ca083c4..f6c233111 100644 --- a/Games/types/Mafia/roles/cards/GuessRole.js +++ b/Games/types/Mafia/roles/cards/GuessRole.js @@ -29,9 +29,17 @@ module.exports = class GuessRole extends Card { let targetRole = this.actor.role.data.targetRole; if (targetRole) { if (this.target === targetRole) { - this.actor.queueAlert(`:invest: You were not mistaken in pursuing ${this.target.name} for they turned out to be ${addArticle(targetRole)}.`); + this.actor.queueAlert( + `:invest: You were not mistaken in pursuing ${ + this.target.name + } for they turned out to be ${addArticle(targetRole)}.` + ); } else { - this.actor.queueAlert(`:invest: You were mistaken in pursuing ${this.target.name} for they turned out not to be ${addArticle(targetRole)}.`); + this.actor.queueAlert( + `:invest: You were mistaken in pursuing ${ + this.target.name + } for they turned out not to be ${addArticle(targetRole)}.` + ); } delete this.actor.role.data.targetRole; }