mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
recommit
This commit is contained in:
parent
e5265f4f38
commit
dc98d89d5c
|
|
@ -227,7 +227,7 @@ void ChatScreen::keyPressed(wchar_t ch, int eventKey)
|
|||
return;
|
||||
}
|
||||
|
||||
if (!g_KBMInput.IsKeyDown(VK_CONTROL) && isAllowedChatChar(ch) && static_cast<int>(message.length()) < SharedConstants::maxChatLength) // BLOCKS CTRL CHARS FROM BEING PARSED
|
||||
if (isAllowedChatChar(ch) && static_cast<int>(message.length()) < SharedConstants::maxChatLength)
|
||||
{
|
||||
message.insert(cursorIndex, 1, ch);
|
||||
cursorIndex++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue