This commit is contained in:
Daniel Odendahl Jr
2017-06-14 01:10:09 +00:00
parent 2fe1486fe3
commit d82e17db80
+2 -2
View File
@@ -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}...`);
}
};