aboutsummaryrefslogtreecommitdiff
path: root/commands/Pokemon/claim.js
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-02-24 22:21:27 -0500
committerUnknown <jtsshieh@outlook.com>2018-02-24 22:21:27 -0500
commit5d8ef8fd5b76503a2080b605c0b1d5832e3fc2c9 (patch)
tree8ab3a342debe6f05c1e13dfbb72f1eb08feff246 /commands/Pokemon/claim.js
parent1ef65bd505c67c78c0c2e7e9b246fde661cf1ea8 (diff)
downloadPokeBot-5d8ef8fd5b76503a2080b605c0b1d5832e3fc2c9.tar.gz
PokeBot-5d8ef8fd5b76503a2080b605c0b1d5832e3fc2c9.tar.bz2
PokeBot-5d8ef8fd5b76503a2080b605c0b1d5832e3fc2c9.zip
fixes
Diffstat (limited to 'commands/Pokemon/claim.js')
-rw-r--r--commands/Pokemon/claim.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/Pokemon/claim.js b/commands/Pokemon/claim.js
index 724b75c..524b7dd 100644
--- a/commands/Pokemon/claim.js
+++ b/commands/Pokemon/claim.js
@@ -1,12 +1,12 @@
exports.run = async (bot, msg) => {
if (!msg.channel.name.startsWith('gym-')) return msg.reply('Go into one of the gym channels and try again.');
if (msg.channel.topic == 'Current Owner: *none*') {
- msg.reply('Alright, you have claimed this gym as yours! Be ready to battle anyone who approaches you');
let team;
if (msg.member.roles.find('name', 'Aqua')) team = 'Aqua';
if (msg.member.roles.find('name', 'Rocket')) team = 'Rocket';
if (msg.member.roles.find('name', 'Magma')) team = 'Magma';
if (!team) return msg.reply('You have to join a team before you can claim a gym.');
+ msg.reply('Alright, you have claimed this gym as yours! Be ready to battle anyone who approaches you');
msg.channel.setTopic('Current Owner: ' + msg.author.id + '/' + msg.author.tag + '/' + team);
}
else {