From 7b376a499763b95718fee402af92502bdfa8a686 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 12 Apr 2024 19:44:34 -0400 Subject: [PATCH] Fix weird bug --- commands/games-mp/lie-swatter.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/commands/games-mp/lie-swatter.js b/commands/games-mp/lie-swatter.js index d134b061..68a848ea 100644 --- a/commands/games-mp/lie-swatter.js +++ b/commands/games-mp/lie-swatter.js @@ -57,12 +57,7 @@ module.exports = class LieSwatterCommand extends Command { ++turn; const question = questions[0]; questions.shift(); - await msg.say(stripIndents` - **${turn}. ${question.category}** - ${question.question.trim()} - - _Is it True or is it a Lie?_ - `); + await msg.say(`**${turn}. ${question.category}** ${question.question.trim()}\n_Is it True or is it a Lie?_`); const filter = res => { if (!awaitedPlayers.includes(res.author.id)) return false; const answer = res.content.toLowerCase();