diff --git a/src/client/Client.js b/src/client/Client.js index a5c802fde..99ffc1f1f 100644 --- a/src/client/Client.js +++ b/src/client/Client.js @@ -219,6 +219,15 @@ class Client extends EventEmitter { this.guilds.map(g => g.emojis.map(e => emojis.set(e.id, e))); return emojis; } + + /** + * The status for the logged in Client. + * @readonly + * @type {?number} + */ + get status() { + return this.ws.status; + } } module.exports = Client;