| 1314 | } |
| 1315 | |
| 1316 | void CServer::SendRconType(int ClientId, bool UsernameReq) |
| 1317 | { |
| 1318 | CMsgPacker Msg(NETMSG_RCONTYPE, true); |
| 1319 | Msg.AddInt(UsernameReq); |
| 1320 | SendMsg(&Msg, MSGFLAG_VITAL, ClientId); |
| 1321 | } |
| 1322 | |
| 1323 | void CServer::SendCapabilities(int ClientId) |
| 1324 | { |
no test coverage detected