From ff30e857bf067c9044f45925ab07bab89684a29b Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 7 May 2017 17:43:17 +0000 Subject: [PATCH] Oops --- commands/util/shardinfo.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/commands/util/shardinfo.js b/commands/util/shardinfo.js index 67cc5989..5def7bf3 100644 --- a/commands/util/shardinfo.js +++ b/commands/util/shardinfo.js @@ -19,10 +19,7 @@ module.exports = class ShardInfoCommand extends Command { prompt: 'Which Shard would you like to get data for?', type: 'integer', validate: shard => { - if(shard < this.client.options.shardCount || shard > -1) { - console.log(shard, this.client.options.shardCount); - return true; - } + if(shard < this.client.options.shardCount && shard > -1) return true; return 'Invalid Shard ID'; } }