diff --git a/src/engine/server/server.cpp b/src/engine/server/server.cpp index 885dc631e0a..dea15951663 100644 --- a/src/engine/server/server.cpp +++ b/src/engine/server/server.cpp @@ -2652,8 +2652,6 @@ void CServer::UpdateDebugDummies(bool ForceDisconnect) Input.m_Direction = (ClientId & 1) ? -1 : 1; m_aClients[ClientId].m_aInputs[0].m_GameTick = Tick() + 1; mem_copy(m_aClients[ClientId].m_aInputs[0].m_aData, &Input, minimum(sizeof(Input), sizeof(m_aClients[ClientId].m_aInputs[0].m_aData))); - m_aClients[ClientId].m_LatestInput = m_aClients[ClientId].m_aInputs[0]; - m_aClients[ClientId].m_CurrentInput = 0; } } diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp index 02c6dc27779..1267c719bd4 100644 --- a/src/game/server/gamecontext.cpp +++ b/src/game/server/gamecontext.cpp @@ -1294,7 +1294,7 @@ static int PlayerFlags_SevenToSix(int Flags) // Server hooks -// Called on all incoming NETMSG_INPUT, reformats player flags for sixup compatibility +// Called on all incoming NETMSG_INPUT, reformats player flags for sixup compatibility void CGameContext::OnClientPrepareInput(int ClientId, void *pInput) { auto *pPlayerInput = (CNetObj_PlayerInput *)pInput; @@ -1302,7 +1302,7 @@ void CGameContext::OnClientPrepareInput(int ClientId, void *pInput) pPlayerInput->m_PlayerFlags = PlayerFlags_SevenToSix(pPlayerInput->m_PlayerFlags); } -// Called on all incoming NETMSG_INPUT, only sets player flags and tracks afk status. +// Called on all incoming NETMSG_INPUT, only sets player flags and tracks afk status void CGameContext::OnClientFreshInput(int ClientId, void *pInput) { if(!m_World.m_Paused) diff --git a/src/game/server/gameworld.cpp b/src/game/server/gameworld.cpp index 5c7d8fa1630..7a511c9ebd0 100644 --- a/src/game/server/gameworld.cpp +++ b/src/game/server/gameworld.cpp @@ -215,12 +215,12 @@ void CGameWorld::Tick() GameServer()->SendChat(-1, TEAM_ALL, "Teams have been balanced"); // This is placed here so that certain weapon physics can happen before the regular Charecter Tick() to preserve physics accuracy - auto *pEnt = m_apFirstEntityTypes[ENTTYPE_CHARACTER]; - for(; pEnt;) + auto *pChar = m_apFirstEntityTypes[ENTTYPE_CHARACTER]; + for(; pChar;) { - m_pNextTraverseEntity = pEnt->m_pNextTypeEntity; - ((CCharacter *)pEnt)->WeaponTick(); - pEnt = m_pNextTraverseEntity; + m_pNextTraverseEntity = pChar->m_pNextTypeEntity; + ((CCharacter *)pChar)->WeaponTick(); + pChar = m_pNextTraverseEntity; } // update all objects