Minor changes

This commit is contained in:
Daniel Odendahl Jr
2017-10-19 18:50:39 +00:00
parent c056ca47e3
commit 571f81ff0c
9 changed files with 10 additions and 88 deletions
+2 -2
View File
@@ -29,7 +29,7 @@ module.exports = class HangmanCommand extends Command {
const display = '_'.repeat(word.length).split('');
while (word.length !== confirmation.length && points < 7) {
await msg.say(stripIndents`
The word is: \`${display.join(' ')}\`. Which letter do you choose?
\`${display.join(' ')}\`. Which letter do you choose?
\`\`\`
___________
| |
@@ -44,7 +44,7 @@ module.exports = class HangmanCommand extends Command {
time: 30000
});
if (!guess.size) {
await msg.say('Time!');
await msg.say('Sorry, time is up!');
break;
}
const choice = guess.first().content.toLowerCase();