From 733fabe52e4bad42c381721807019a8c1ca42686 Mon Sep 17 00:00:00 2001 From: Xander Date: Thu, 7 Aug 2025 19:18:35 +0100 Subject: [PATCH] fix arg in GuiEventListener#charTyped --- .../client/gui/components/events/GuiEventListener.mapping | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/net/minecraft/client/gui/components/events/GuiEventListener.mapping b/data/net/minecraft/client/gui/components/events/GuiEventListener.mapping index 6f0c4102d1..e2493e395b 100644 --- a/data/net/minecraft/client/gui/components/events/GuiEventListener.mapping +++ b/data/net/minecraft/client/gui/components/events/GuiEventListener.mapping @@ -6,8 +6,8 @@ CLASS net/minecraft/client/gui/components/events/GuiEventListener COMMENT Called when a character is typed within the GUI element. COMMENT

COMMENT @return {@code true} if the event is consumed, {@code false} otherwise. - ARG 1 codePoint - COMMENT the code point of the typed character. + ARG 1 character + COMMENT the typed character. ARG 2 modifiers COMMENT the keyboard modifiers. METHOD getBorderForArrowNavigation (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenRectangle;