From 72cbba0f3d2292dcbb7df6a6da5cb6515e51037f Mon Sep 17 00:00:00 2001 From: FabrizioCoder <74118796+FabrizioCoder@users.noreply.github.com> Date: Sat, 30 Jul 2022 01:08:11 -0500 Subject: [PATCH] Update user.ts (#82) } --- packages/core/src/structures/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/structures/user.ts b/packages/core/src/structures/user.ts index 3921bda..84b4c69 100644 --- a/packages/core/src/structures/user.ts +++ b/packages/core/src/structures/user.ts @@ -90,7 +90,7 @@ export class User implements Model { /** gets the user's username#discriminator */ get tag(): string { - return `${this.username}#${this.discriminator}}`; + return `${this.username}#${this.discriminator}`; } /** fetches this user */