Fix mistake

Should be 'm_lastUCmdSimulationRemainderTime' instead of 'm_totalExtraClientCmdTimeAttempted'.
This commit is contained in:
Kawe Mazidjatari 2023-01-19 15:29:53 +01:00
parent 54f08bd887
commit b2ffab07c3

View File

@ -73,7 +73,7 @@ void CPlayer::SetLastUCmdSimulationRemainderTime(float flRemainderTime)
_InterlockedOr16(g_pGlobals->m_pUnk0 + nEdict + 32, 0x200u); _InterlockedOr16(g_pGlobals->m_pUnk0 + nEdict + 32, 0x200u);
} }
m_totalExtraClientCmdTimeAttempted = flRemainderTime; m_lastUCmdSimulationRemainderTime = flRemainderTime;
} }
} }