| 154 | } |
| 155 | |
| 156 | void CServerBrowser::Con_RemoveExcludedCommunity(IConsole::IResult *pResult, void *pUserData) |
| 157 | { |
| 158 | CServerBrowser *pThis = static_cast<CServerBrowser *>(pUserData); |
| 159 | const char *pCommunityId = pResult->GetString(0); |
| 160 | if(!pThis->ValidateCommunityId(pCommunityId)) |
| 161 | return; |
| 162 | pThis->CommunitiesFilter().Remove(pCommunityId); |
| 163 | } |
| 164 | |
| 165 | void CServerBrowser::Con_AddExcludedCountry(IConsole::IResult *pResult, void *pUserData) |
| 166 | { |
nothing calls this directly
no test coverage detected