diff --git a/src/structures/user.ts b/src/structures/user.ts index 10fbf6a..08bc7ac 100644 --- a/src/structures/user.ts +++ b/src/structures/user.ts @@ -40,7 +40,7 @@ export class User extends Base { return `<@${this.id}>` } - avatarURL(format: ImageFormats = 'webp', size: ImageSize = 512, dynamic: boolean = true): string { + avatarURL(format: ImageFormats = 'webp', size: ImageSize = 512): string { return this.avatar != null ? `${ImageURL(USER_AVATAR(this.id, this.avatar), format, size)}` : `${DEFAULT_USER_AVATAR(String(Number(this.discriminator) % 5))}.png`