Skip to content

Commit

Permalink
fixed chat ignore feature
Browse files Browse the repository at this point in the history
  • Loading branch information
oy committed Mar 4, 2012
1 parent c2e5771 commit 8c033a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/client/components/menus_ingame.cpp
Expand Up @@ -183,7 +183,7 @@ void CMenus::RenderPlayers(CUIRect MainView)
ButtonBar.VSplitLeft(Width, &Button, &ButtonBar);
Button.VSplitLeft((Width-Button.h)/4.0f, 0, &Button);
Button.VSplitLeft(Button.h, &Button, 0);
if(&g_Config.m_ClShowChatFriends && !m_pClient->m_aClients[Index].m_Friend)
if(g_Config.m_ClShowChatFriends && !m_pClient->m_aClients[Index].m_Friend)
DoButton_Toggle(&s_aPlayerIDs[Index][0], 1, &Button, false);
else
if(DoButton_Toggle(&s_aPlayerIDs[Index][0], m_pClient->m_aClients[Index].m_ChatIgnore, &Button, true))
Expand Down

0 comments on commit 8c033a0

Please sign in to comment.