From 043af909368ca8f82e418f0e5e440478b89eb3d4 Mon Sep 17 00:00:00 2001 From: DeaDDooMER Date: Tue, 30 Apr 2019 19:54:02 +0300 Subject: [PATCH] fixed chat input AGAIN --- src/game/g_console.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/g_console.pas b/src/game/g_console.pas index 33bfcf7..9a2bd99 100644 --- a/src/game/g_console.pas +++ b/src/game/g_console.pas @@ -1727,7 +1727,7 @@ end; procedure g_Console_ProcessBind (key: Integer; down: Boolean); var i: Integer; begin - if (not g_GUIGrabInput) and (key >= 0) and (key < e_MaxInputKeys) and ((gInputBinds[key].down <> nil) or (gInputBinds[key].up <> nil)) then + if (not g_GUIGrabInput) and (not gChatShow) and (key >= 0) and (key < e_MaxInputKeys) and ((gInputBinds[key].down <> nil) or (gInputBinds[key].up <> nil)) then begin if down then for i := 0 to High(gInputBinds[key].down) do -- 2.29.2