From 37dd6bec40513cbd7abdaf2b818f2afc664e0ef3 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 3 Dec 2020 13:31:23 -0500 Subject: [PATCH] Fix --- commands/games-mp/typing-race.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-mp/typing-race.js b/commands/games-mp/typing-race.js index bf4b016b..54bcbf89 100644 --- a/commands/games-mp/typing-race.js +++ b/commands/games-mp/typing-race.js @@ -46,8 +46,8 @@ module.exports = class TypingRaceCommand extends Command { time: 30000 }); this.client.games.delete(msg.channel.id); - if (!winner.size) return msg.reply('Oh... No one won.'); - return msg.reply(`The winner is ${winner.first().author}! (Took ${(Date.now() - now) / 1000} seconds)`); + if (!winner.size) return msg.say('Oh... No one won.'); + return msg.say(`The winner is ${winner.first().author}! (Took ${(Date.now() - now) / 1000} seconds)`); } catch (err) { this.client.games.delete(msg.channel.id); throw err;