catto.js 0.7.2 → 0.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Bot.js +1 -1
  2. package/package.json +1 -1
package/Bot.js CHANGED
@@ -231,7 +231,7 @@ module.exports = class extends EventEmitter {
231
231
  r.count = r.length;
232
232
  if (this.options.sharded) {
233
233
  return new Promise(async res => {
234
- r.count = (await this.client.cluster.broadcastEval("this.guilds.cache.size")).reduce((a, b) => a + b, 0);
234
+ r.count = (await this.cluster.broadcastEval("this.guilds.cache.size")).reduce((a, b) => a + b, 0);
235
235
  res(r);
236
236
  });
237
237
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "catto.js",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "Universal module for everything.",
5
5
  "main": "index.js",
6
6
  "scripts": {