From 97df8c125af16f72335316c6d99053a0999838b6 Mon Sep 17 00:00:00 2001 From: Matt Cavanagh Date: Sat, 19 Aug 2023 17:24:41 +0100 Subject: [PATCH] fix: Added a missing await --- src/ps2/commands/verify.command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ps2/commands/verify.command.ts b/src/ps2/commands/verify.command.ts index 32a0b147..29216147 100644 --- a/src/ps2/commands/verify.command.ts +++ b/src/ps2/commands/verify.command.ts @@ -66,7 +66,7 @@ export class PS2VerifyCommand { return isValid; } - this.ps2GameVerificationService.watch(character, guildMember); + await this.ps2GameVerificationService.watch(character, guildMember); // Successful! return `Your character "${character.name.first}" has been detected as a member of DIG. However, to fully verify you, you now need follow the below steps.`;