| 3356 | } |
| 3357 | |
| 3358 | void CGameContext::ConServerAlert(IConsole::IResult *pResult, void *pUserData) |
| 3359 | { |
| 3360 | CGameContext *pSelf = (CGameContext *)pUserData; |
| 3361 | |
| 3362 | char aBuf[1024]; |
| 3363 | str_copy(aBuf, pResult->GetString(0), sizeof(aBuf)); |
| 3364 | UnescapeNewlines(aBuf); |
| 3365 | |
| 3366 | pSelf->SendServerAlert(aBuf); |
| 3367 | } |
| 3368 | |
| 3369 | void CGameContext::ConModAlert(IConsole::IResult *pResult, void *pUserData) |
| 3370 | { |
nothing calls this directly
no test coverage detected