mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 22:48:18 +00:00
Write messages to all active demo recorders
This commit is contained in:
parent
63d0c8e170
commit
d369a5b693
|
@ -799,9 +799,13 @@ int CServer::SendMsg(CMsgPacker *pMsg, int Flags, int ClientID)
|
||||||
if(RepackMsg(pMsg, Pack7, true))
|
if(RepackMsg(pMsg, Pack7, true))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
// write message to demo recorder
|
// write message to demo recorders
|
||||||
if(!(Flags & MSGFLAG_NORECORD))
|
if(!(Flags & MSGFLAG_NORECORD))
|
||||||
m_aDemoRecorder[MAX_CLIENTS].RecordMessage(Pack6.Data(), Pack6.Size());
|
{
|
||||||
|
for(auto &Recorder : m_aDemoRecorder)
|
||||||
|
if(Recorder.IsRecording())
|
||||||
|
Recorder.RecordMessage(Pack6.Data(), Pack6.Size());
|
||||||
|
}
|
||||||
|
|
||||||
if(!(Flags & MSGFLAG_NOSEND))
|
if(!(Flags & MSGFLAG_NOSEND))
|
||||||
{
|
{
|
||||||
|
@ -837,10 +841,13 @@ int CServer::SendMsg(CMsgPacker *pMsg, int Flags, int ClientID)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// write message to demo recorders
|
||||||
if(!(Flags & MSGFLAG_NORECORD))
|
if(!(Flags & MSGFLAG_NORECORD))
|
||||||
{
|
{
|
||||||
m_aDemoRecorder[ClientID].RecordMessage(Pack.Data(), Pack.Size());
|
if(m_aDemoRecorder[ClientID].IsRecording())
|
||||||
m_aDemoRecorder[MAX_CLIENTS].RecordMessage(Pack.Data(), Pack.Size());
|
m_aDemoRecorder[ClientID].RecordMessage(Pack.Data(), Pack.Size());
|
||||||
|
if(m_aDemoRecorder[MAX_CLIENTS].IsRecording())
|
||||||
|
m_aDemoRecorder[MAX_CLIENTS].RecordMessage(Pack.Data(), Pack.Size());
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!(Flags & MSGFLAG_NOSEND))
|
if(!(Flags & MSGFLAG_NOSEND))
|
||||||
|
|
Loading…
Reference in a new issue