diff --git a/src/game/client/gameclient.cpp b/src/game/client/gameclient.cpp index b72e0dff5..d8b111265 100644 --- a/src/game/client/gameclient.cpp +++ b/src/game/client/gameclient.cpp @@ -1762,6 +1762,12 @@ void CGameClient::SendKill(int ClientID) { CNetMsg_Cl_Kill Msg; Client()->SendPackMsg(&Msg, MSGFLAG_VITAL); + + if(g_Config.m_ClDummyCopyMoves) + { + CMsgPacker Msg(NETMSGTYPE_CL_KILL); + Client()->SendMsgExY(&Msg, MSGFLAG_VITAL, false, !g_Config.m_ClDummy); + } } void CGameClient::ConTeam(IConsole::IResult *pResult, void *pUserData)