From 781e832117852ecd6653067bd606c8bb7fff4233 Mon Sep 17 00:00:00 2001 From: Jordy Ruiz Date: Sun, 25 Nov 2018 14:26:38 +0100 Subject: [PATCH] Ctrl+Tab to go to previous whisper, instead of Shift+Tab --- src/game/client/components/chat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/client/components/chat.cpp b/src/game/client/components/chat.cpp index bc8bdf79f..3bb581e4f 100644 --- a/src/game/client/components/chat.cpp +++ b/src/game/client/components/chat.cpp @@ -191,7 +191,7 @@ bool CChat::OnInput(IInput::CEvent Event) for(int i = 0; i < MAX_CLIENTS; i++) { int ClientID; - if(Input()->KeyIsPressed(KEY_LSHIFT) || Input()->KeyIsPressed(KEY_RSHIFT)) + if(Input()->KeyIsPressed(KEY_LCTRL) || Input()->KeyIsPressed(KEY_RCTRL)) ClientID = (m_WhisperTarget + MAX_CLIENTS - i) % MAX_CLIENTS; // pick previous player as target else ClientID = (m_WhisperTarget + i) % MAX_CLIENTS; // pick next player as target