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'; } }