From 135ce3f4b756b084deef3ff02fbc6c0e0ea0d418 Mon Sep 17 00:00:00 2001 From: Soheab_ <33902984+Soheab@users.noreply.github.com> Date: Wed, 27 Aug 2025 17:10:16 +0200 Subject: [PATCH] Font 12 --- discord/types/user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/types/user.py b/discord/types/user.py index 83d92ec06..d1c218f4e 100644 --- a/discord/types/user.py +++ b/discord/types/user.py @@ -29,7 +29,7 @@ from typing_extensions import NotRequired PremiumType = Literal[0, 1, 2, 3] NameplatePallete = Literal['crimson', 'berry', 'sky', 'teal', 'forest', 'bubble_gum', 'violet', 'cobalt', 'clover'] -DisplayNameFont = Literal[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] +DisplayNameFont = Literal[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] DisplayNameEffect = Literal[1, 2, 3, 4, 5] @@ -75,7 +75,7 @@ class PartialUser(TypedDict): class DisplayNameStyle(TypedDict): font_id: DisplayNameFont effect_id: DisplayNameEffect - colors: List[int] # 1-2 + colors: List[int] class User(PartialUser, total=False):