@stelliajs/framework 1.1.1-dev-2 → 1.1.2
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.
|
@@ -35,11 +35,12 @@ export class StelliaClient extends Client {
|
|
|
35
35
|
connect = async (token) => {
|
|
36
36
|
if (!this.areManagersLoaded()) {
|
|
37
37
|
setTimeout(() => {
|
|
38
|
-
console.log(
|
|
38
|
+
console.log("Managers are not loaded yet, retrying in 500ms...");
|
|
39
39
|
this.connect(token);
|
|
40
40
|
}, 500);
|
|
41
41
|
return;
|
|
42
42
|
}
|
|
43
|
+
console.log("Managers are loaded, connecting to Discord...");
|
|
43
44
|
await this.login(token);
|
|
44
45
|
};
|
|
45
46
|
initializeCommands = async () => {
|