From b8487a7139ee548bb62bcb9627a5fae01aa8caa6 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 28 May 2017 15:01:58 +0000 Subject: [PATCH] fix markdown --- commands/games/battle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games/battle.js b/commands/games/battle.js index cea41149..8184bf98 100644 --- a/commands/games/battle.js +++ b/commands/games/battle.js @@ -27,7 +27,7 @@ module.exports = class BattleCommand extends Command { if (opponent.id === msg.author.id) return msg.say('You cannot fight yourself!'); if (this.fighting.has(msg.guild.id)) return msg.say('There is already a fight in this server...'); this.fighting.add(msg.guild.id); - await msg.say(`**${opponent.username}**, do you accept this challenge? **_Y_es** or **No**?`); + await msg.say(`**${opponent.username}**, do you accept this challenge? **__Y__es** or **No**?`); try { const verify = await msg.channel.awaitMessages(res => res.author.id === opponent.id, { max: 1,