From dc98d89d5c073e500d148f333f4a68ff63a8dc81 Mon Sep 17 00:00:00 2001 From: ethxnblxd Date: Fri, 20 Mar 2026 21:06:28 +0800 Subject: [PATCH] recommit --- Minecraft.Client/ChatScreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/ChatScreen.cpp b/Minecraft.Client/ChatScreen.cpp index 22c37849b..02f0c5fc4 100644 --- a/Minecraft.Client/ChatScreen.cpp +++ b/Minecraft.Client/ChatScreen.cpp @@ -227,7 +227,7 @@ void ChatScreen::keyPressed(wchar_t ch, int eventKey) return; } - if (!g_KBMInput.IsKeyDown(VK_CONTROL) && isAllowedChatChar(ch) && static_cast(message.length()) < SharedConstants::maxChatLength) // BLOCKS CTRL CHARS FROM BEING PARSED + if (isAllowedChatChar(ch) && static_cast(message.length()) < SharedConstants::maxChatLength) { message.insert(cursorIndex, 1, ch); cursorIndex++;