diff --git a/core/ChatTriggers.cpp b/core/ChatTriggers.cpp index a64891d4..fba3d264 100644 --- a/core/ChatTriggers.cpp +++ b/core/ChatTriggers.cpp @@ -333,8 +333,11 @@ void ChatTriggers::OnSayCommand_Post() { int client = g_ConCmds.GetCommandClient(); - if (m_bWillProcessInPost && client > 0) + if (m_bWillProcessInPost) { + /* Reset this for re-entrancy */ + m_bWillProcessInPost = false; + /* Execute the cached command */ unsigned int old = SetReplyTo(SM_REPLY_CHAT); #if SOURCE_ENGINE == SE_DOTA @@ -345,9 +348,6 @@ void ChatTriggers::OnSayCommand_Post() SetReplyTo(old); } - /* Reset this for re-entrancy */ - m_bWillProcessInPost = false; - if (m_bPluginIgnored) { m_bPluginIgnored = false;