aboutsummaryrefslogtreecommitdiff
path: root/commands/Pokemon
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-03-27 20:03:27 -0400
committerUnknown <jtsshieh@outlook.com>2018-03-27 20:03:27 -0400
commitacad86555710ba6cae27bf0322ae575de9ba4a19 (patch)
tree65c6a656c1a380a19f322946d54e16e47bc49922 /commands/Pokemon
parentfdae2d778c01b3a725230609207ff5670662f714 (diff)
downloadPokeBot-acad86555710ba6cae27bf0322ae575de9ba4a19.tar.gz
PokeBot-acad86555710ba6cae27bf0322ae575de9ba4a19.tar.bz2
PokeBot-acad86555710ba6cae27bf0322ae575de9ba4a19.zip
things
Diffstat (limited to 'commands/Pokemon')
-rw-r--r--commands/Pokemon/claim.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/commands/Pokemon/claim.js b/commands/Pokemon/claim.js
index 3f4afed..38320bc 100644
--- a/commands/Pokemon/claim.js
+++ b/commands/Pokemon/claim.js
@@ -36,6 +36,7 @@ exports.run = async (bot, msg) => {
if (!team) return msg.reply('You have to join a team before you can claim a gym.');
const owner = msg.channel.topic.slice(15).substring(0, 18);
if (msg.guild.members.find('id', owner).roles.find('name', team)) return msg.reply('Don\'t try battling your own team. They won\'t like you.');
+ if (bot.gyms.get(msg.channel.id) != null) return msg.reply('Nope, someone is already battling the gym.');
msg.channel.send('<@' + owner + '>, come here as ' + msg.member.displayName + ' wants to battle you.');
const func = async mess => {
if (mess.channel != msg.channel) return;
@@ -54,16 +55,18 @@ exports.run = async (bot, msg) => {
bot.removeListener('message', func);
}
if (user.id == msg.author.id) {
- await msg.channel.send('The owner has been defeated! Transfaring gym!');
+ await msg.channel.send('The owner has been defeated! Transferring gym!');
let recipientTeam;
if (msg.member.roles.find('name', 'Skull')) recipientTeam = 'Skull';
if (msg.member.roles.find('name', 'Flare')) recipientTeam = 'Flare';
await msg.channel.setTopic('Current Owner: ' + msg.member.id + '/' + msg.author.tag + '/' + recipientTeam);
+ bot.gyms.set(msg.channel.id, null);
bot.removeListener('message', func);
}
}
}
};
+ bot.gyms.set(msg.channel.id, func);
bot.on('message', func);
}
};