diff options
| -rw-r--r-- | commands/Pokemon/claim.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/Pokemon/claim.js b/commands/Pokemon/claim.js index dccbd29..aa11ed1 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.id + '/' + msg.author.tag); } else { - const owner = msg.channel.topic.slice(15).substring(msg.author.id.length); - msg.channel.send('<@' + owner + '>, come here as ' + msg.author + 'wants to battle you.'); + const owner = msg.channel.topic.slice(15).substring(0, msg.author.id.length); + msg.channel.send('<@' + owner + '>, come here as ' + msg.author + ' wants to battle you.'); } }; |
