From 700a14685645d00fac67c32317688d0c2826f2eb Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 27 Oct 2019 20:10:23 -0400 Subject: [PATCH] connect success log --- src/Client.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Client.ts b/src/Client.ts index 8be5a2f..294f506 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -79,6 +79,7 @@ export default class Client extends Eris.Client { }); await mongoose.connect(config.mongoURL); - this.connect(); + await this.connect(); + this.signale.success(`Successfully connected to Discord | ${this.user.username}#${this.user.discriminator}`); } }