mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-27 06:37:32 +02:00
Fix
This commit is contained in:
@@ -79,7 +79,7 @@ module.exports = class PokemonAdvantageCommand extends Command {
|
|||||||
const answer = this.calculateAdvantage(pkmn1, pkmn2);
|
const answer = this.calculateAdvantage(pkmn1, pkmn2);
|
||||||
const answerAttachment = await this.createImage(pkmn1, pkmn2, answer);
|
const answerAttachment = await this.createImage(pkmn1, pkmn2, answer);
|
||||||
await msg.reply(stripIndents`
|
await msg.reply(stripIndents`
|
||||||
**You have 15 seconds, who\'s got the advantage?**
|
**You have 15 seconds, who\'s got the type advantage?**
|
||||||
_If the Pokémon are evenly matched, type \`even\`._
|
_If the Pokémon are evenly matched, type \`even\`._
|
||||||
`, { files: [attachment] });
|
`, { files: [attachment] });
|
||||||
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, {
|
||||||
@@ -90,7 +90,7 @@ module.exports = class PokemonAdvantageCommand extends Command {
|
|||||||
if (!msgs.size) return msg.reply(`Time! It's **${answer.name}**!`, { files: [answerAttachment] });
|
if (!msgs.size) return msg.reply(`Time! It's **${answer.name}**!`, { files: [answerAttachment] });
|
||||||
const guess = msgs.first().content.toLowerCase();
|
const guess = msgs.first().content.toLowerCase();
|
||||||
const slug = this.client.pokemon.makeSlug(guess);
|
const slug = this.client.pokemon.makeSlug(guess);
|
||||||
if (!answer) {
|
if (answer === true) {
|
||||||
if (guess === 'even') return msg.reply('Nice! These two are even!', { files: [answerAttachment] });
|
if (guess === 'even') return msg.reply('Nice! These two are even!', { files: [answerAttachment] });
|
||||||
return msg.reply('Nope! These two are even!', { files: [answerAttachment] });
|
return msg.reply('Nope! These two are even!', { files: [answerAttachment] });
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user