From ecaaeac9d249df61ba8780d04891f6ceada85aa1 Mon Sep 17 00:00:00 2001 From: dragonfire535 Date: Mon, 16 Oct 2017 13:27:09 -0400 Subject: [PATCH] Beep --- structures/CommandoClient.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/structures/CommandoClient.js b/structures/CommandoClient.js index d43d39d0..df5dddc6 100644 --- a/structures/CommandoClient.js +++ b/structures/CommandoClient.js @@ -27,7 +27,7 @@ class CommandoClient extends Client { .set({ Authorization: this.dBotsKey }) .send({ shard_id: this.shard ? this.shard.id : 0, - shard_count: this.client.options.shardCount || 1, + shard_count: this.options.shardCount || 1, server_count: this.guilds.size }); return body; @@ -45,7 +45,7 @@ class CommandoClient extends Client { .set({ Authorization: this.dBotsOrgKey }) .send({ shard_id: this.shard ? this.shard.id : 0, - shard_count: this.client.options.shardCount || 1, + shard_count: this.options.shardCount || 1, server_count: this.guilds.size }); return body;