diff --git a/src/client/Client.js b/src/client/Client.js index ce62c3b..5bce02f 100644 --- a/src/client/Client.js +++ b/src/client/Client.js @@ -983,9 +983,9 @@ class Client extends BaseClient { * @returns {Promise} */ sleep(miliseconds) { - return new Promise(r => setTimeout(r, miliseconds)); + return typeof miliseconds === 'number' ? new Promise(r => setTimeout(r, miliseconds)) : null; } - + /** * Validates the client options. * @param {ClientOptions} [options=this.options] Options to validate