| 3206 | } |
| 3207 | |
| 3208 | void CGameClient::SendKill() const |
| 3209 | { |
| 3210 | CNetMsg_Cl_Kill Msg; |
| 3211 | Client()->SendPackMsgActive(&Msg, MSGFLAG_VITAL); |
| 3212 | |
| 3213 | if(g_Config.m_ClDummyCopyMoves) |
| 3214 | { |
| 3215 | CMsgPacker MsgP(NETMSGTYPE_CL_KILL, false); |
| 3216 | Client()->SendMsg(!g_Config.m_ClDummy, &MsgP, MSGFLAG_VITAL); |
| 3217 | } |
| 3218 | } |
| 3219 | |
| 3220 | void CGameClient::SendReadyChange7() |
| 3221 | { |
no test coverage detected