From 66621de2706485267998ef916e0e41c6ea963803 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 22 Apr 2019 16:52:08 +0200 Subject: [PATCH] Fix being unable to focus chat with hotkey. --- Content.Client/GameTicking/ClientGameTicker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/GameTicking/ClientGameTicker.cs b/Content.Client/GameTicking/ClientGameTicker.cs index 65ad1f3612..c0fa89cbd0 100644 --- a/Content.Client/GameTicking/ClientGameTicker.cs +++ b/Content.Client/GameTicking/ClientGameTicker.cs @@ -203,7 +203,7 @@ namespace Content.Client.GameTicking _inputManager.SetInputCommand(ContentKeyFunctions.FocusChat, InputCmdHandler.FromDelegate(session => { - _lobby.Chat.Input.IgnoreNext = true; + _gameChat.Input.IgnoreNext = true; _gameChat.Input.GrabKeyboardFocus(); }));