| 163 | } |
| 164 | |
| 165 | void CServerBan::ConBanRegion(IConsole::IResult *pResult, void *pUser) |
| 166 | { |
| 167 | const char *pRegion = pResult->GetString(0); |
| 168 | if(str_comp_nocase(pRegion, g_Config.m_SvRegionName)) |
| 169 | return; |
| 170 | |
| 171 | pResult->RemoveArgument(0); |
| 172 | ConBanExt(pResult, pUser); |
| 173 | } |
| 174 | |
| 175 | void CServerBan::ConBanRegionRange(IConsole::IResult *pResult, void *pUser) |
| 176 | { |
nothing calls this directly
no test coverage detected