diff --git a/src/game/client/components/chat.cpp b/src/game/client/components/chat.cpp index e82eed83d0c..2db4d94d38c 100644 --- a/src/game/client/components/chat.cpp +++ b/src/game/client/components/chat.cpp @@ -428,7 +428,7 @@ bool CChat::OnInput(const IInput::CEvent &Event) // quote the name char aQuoted[128]; - if(m_Input.GetString()[0] == '/' && (str_find(pCompletionString, " ") || str_find(pCompletionString, "\""))) + if((m_Input.GetString()[0] == '/' || m_pClient->m_Bindchat.ChatDoBinds(m_Input.GetString())) && (str_find(pCompletionString, " ") || str_find(pCompletionString, "\""))) { // escape the name str_copy(aQuoted, "\"");