aboutsummaryrefslogtreecommitdiff
path: root/commands/Pokemon/claim.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Pokemon/claim.js')
-rw-r--r--commands/Pokemon/claim.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/Pokemon/claim.js b/commands/Pokemon/claim.js
index e0d034e..3a45e36 100644
--- a/commands/Pokemon/claim.js
+++ b/commands/Pokemon/claim.js
@@ -5,8 +5,8 @@ exports.run = async (bot, msg) => {
msg.channel.setTopic('Current Owner: ' + msg.author.tag + '/' + msg.author.id);
}
else {
- const owner = msg.channel.topic.slice(15).substring(msg.author.tag.length);
- msg.channel.send('<@' + owner + '>, come here as ' + msg.author.displayName + ' wants to battle you.');
+ const owner = msg.channel.topic.slice(15).substring(msg.author.tag.length + 1);
+ msg.channel.send('<@' + owner + '>, come here as ' + msg.member.displayName + ' wants to battle you.');
}
};