mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-20 01:43:50 +00:00
Fix KeyUp hook being called when the console is open
This commit is contained in:
parent
16251734ce
commit
443c51714a
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ void D_ProcessEvents(void)
|
|||
if (eaten)
|
||||
continue; // ate the event
|
||||
|
||||
if (!hooked && G_LuaResponder(ev))
|
||||
if (!hooked && !CON_Ready() && G_LuaResponder(ev))
|
||||
continue;
|
||||
|
||||
G_Responder(ev);
|
||||
|
|
Loading…
Reference in a new issue