mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 03:58:18 +00:00
Fix cl_showhud_score
This commit is contained in:
parent
f193099f94
commit
c437170856
|
@ -625,17 +625,27 @@ void CHud::OnMessage(int MsgType, void *pRawMsg)
|
||||||
m_CheckpointTick = Client()->GameTick();
|
m_CheckpointTick = Client()->GameTick();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// NETMSGTYPE_SV_RACETIME on old race servers
|
else if(MsgType == NETMSGTYPE_SV_KILLMSG)
|
||||||
|
{
|
||||||
|
CNetMsg_Sv_KillMsg *pMsg = (CNetMsg_Sv_KillMsg *)pRawMsg;
|
||||||
|
if(pMsg->m_Victim == m_pClient->m_Snap.m_LocalClientID)
|
||||||
|
{
|
||||||
|
m_CheckpointTick = 0;
|
||||||
|
m_DDRaceTime = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
else if(MsgType == NETMSGTYPE_SV_RECORD)
|
else if(MsgType == NETMSGTYPE_SV_RECORD)
|
||||||
{
|
{
|
||||||
CServerInfo Info;
|
CServerInfo Info;
|
||||||
Client()->GetServerInfo(&Info);
|
Client()->GetServerInfo(&Info);
|
||||||
|
|
||||||
|
CNetMsg_Sv_Record *pMsg = (CNetMsg_Sv_Record *)pRawMsg;
|
||||||
|
|
||||||
|
// NETMSGTYPE_SV_RACETIME on old race servers
|
||||||
if(!IsDDRace(&Info) && IsRace(&Info))
|
if(!IsDDRace(&Info) && IsRace(&Info))
|
||||||
{
|
{
|
||||||
m_DDRaceTimeReceived = true;
|
m_DDRaceTimeReceived = true;
|
||||||
|
|
||||||
CNetMsg_Sv_Record *pMsg = (CNetMsg_Sv_Record *)pRawMsg;
|
|
||||||
|
|
||||||
m_DDRaceTime = pMsg->m_ServerTimeBest; // First value: m_Time
|
m_DDRaceTime = pMsg->m_ServerTimeBest; // First value: m_Time
|
||||||
m_DDRaceTick = 0;
|
m_DDRaceTick = 0;
|
||||||
|
|
||||||
|
@ -647,22 +657,12 @@ void CHud::OnMessage(int MsgType, void *pRawMsg)
|
||||||
m_CheckpointTick = Client()->GameTick();
|
m_CheckpointTick = Client()->GameTick();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
else
|
||||||
else if(MsgType == NETMSGTYPE_SV_KILLMSG)
|
|
||||||
{
|
|
||||||
CNetMsg_Sv_KillMsg *pMsg = (CNetMsg_Sv_KillMsg *)pRawMsg;
|
|
||||||
if(pMsg->m_Victim == m_pClient->m_Snap.m_LocalClientID)
|
|
||||||
{
|
{
|
||||||
m_CheckpointTick = 0;
|
m_ServerRecord = (float)pMsg->m_ServerTimeBest/100;
|
||||||
m_DDRaceTime = 0;
|
m_PlayerRecord = (float)pMsg->m_PlayerTimeBest/100;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(MsgType == NETMSGTYPE_SV_RECORD)
|
|
||||||
{
|
|
||||||
CNetMsg_Sv_Record *pMsg = (CNetMsg_Sv_Record *)pRawMsg;
|
|
||||||
m_ServerRecord = (float)pMsg->m_ServerTimeBest/100;
|
|
||||||
m_PlayerRecord = (float)pMsg->m_PlayerTimeBest/100;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CHud::RenderDDRaceEffects()
|
void CHud::RenderDDRaceEffects()
|
||||||
|
|
Loading…
Reference in a new issue