Improve Google Feud

This commit is contained in:
Daniel Odendahl Jr
2018-05-27 21:49:10 +00:00
parent 19a6f78064
commit f4cfa4e7f7
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ module.exports = class GoogleFeudCommand extends Command {
.setColor(0x005AF0) .setColor(0x005AF0)
.setTitle(`${question}...?`) .setTitle(`${question}...?`)
.setDescription('Type the choice you think is a suggestion _without_ the question.') .setDescription('Type the choice you think is a suggestion _without_ the question.')
.setFooter(`${tries} tries remaining!`); .setFooter(`${tries} ${tries === 1 ? 'try' : 'tries'} remaining!`);
for (let i = 0; i < suggestions.length; i++) embed.addField(` ${10000 - (i * 1000)}`, display[i], true); for (let i = 0; i < suggestions.length; i++) embed.addField(` ${10000 - (i * 1000)}`, display[i], true);
await msg.embed(embed); await msg.embed(embed);
const msgs = await msg.channel.awaitMessages(res => res.author.id === msg.author.id, { const msgs = await msg.channel.awaitMessages(res => res.author.id === msg.author.id, {
@@ -53,7 +53,7 @@ module.exports = class GoogleFeudCommand extends Command {
display[suggestions.indexOf(choice)] = choice; display[suggestions.indexOf(choice)] = choice;
} else { } else {
--tries; --tries;
await msg.say(`Nope! ${tries} tries remaining!`); if (tries) await msg.say(`Nope! ${tries} tries remaining!`);
} }
} }
this.playing.delete(msg.channel.id); this.playing.delete(msg.channel.id);
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "xiao", "name": "xiao",
"version": "78.0.0", "version": "78.0.1",
"description": "Your personal server companion.", "description": "Your personal server companion.",
"main": "Xiao.js", "main": "Xiao.js",
"scripts": { "scripts": {