From 18470739063d349687eec5c5bd1b58c263fad8e5 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 24 Feb 2018 21:36:52 -0500 Subject: more fixes --- commands/Pokemon/claim.js | 2 +- commands/Pokemon/drop.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'commands') diff --git a/commands/Pokemon/claim.js b/commands/Pokemon/claim.js index 5a7d293..d2a9549 100644 --- a/commands/Pokemon/claim.js +++ b/commands/Pokemon/claim.js @@ -6,7 +6,7 @@ exports.run = async (bot, msg) => { } else { - const owner = msg.channel.topic.slice(15).substring(0, 19); + const owner = msg.channel.topic.slice(15).substring(0, 18); msg.channel.send('<@' + owner + '>, come here as ' + msg.member.displayName + ' wants to battle you.'); } }; diff --git a/commands/Pokemon/drop.js b/commands/Pokemon/drop.js index 5ab88d5..25266f4 100644 --- a/commands/Pokemon/drop.js +++ b/commands/Pokemon/drop.js @@ -4,7 +4,7 @@ exports.run = async (bot, msg) => { msg.reply('There is no owner for this gym. Claim it now with p:claim!'); } else { - const owner = msg.channel.topic.slice(15).substring(0, 19); + const owner = msg.channel.topic.slice(15).substring(0, 18); if (msg.author.id != owner) { return msg.reply('You are not the owner of this gym.'); } -- cgit v1.2.3