From d82e17db8041dc4e222cc9e508b6d9dc3154bce3 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 14 Jun 2017 01:10:09 +0000 Subject: [PATCH] Moo --- commands/games/hangman.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games/hangman.js b/commands/games/hangman.js index 9fc46fc4..ba118325 100644 --- a/commands/games/hangman.js +++ b/commands/games/hangman.js @@ -50,7 +50,7 @@ module.exports = class HangmanCommand extends Command { points++; } } - if (word.length === confirmation.length) return msg.say('You won!'); - else return msg.say('Too bad...'); + if (word.length === confirmation.length) return msg.say(`You won, it was ${word}!`); + else return msg.say(`Too bad... It was ${word}...`); } };