fix: calculate UpdateLocation fun not so often (#1040)

This commit is contained in:
golukon 2025-03-28 01:08:42 +03:00 committed by GitHub
parent a7395b054d
commit 756deb1ea9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10116,7 +10116,11 @@ bool CBasePlayer::IsObservingPlayer(CBasePlayer *pPlayer)
void CBasePlayer::UpdateLocation(bool forceUpdate)
{
#ifdef REGAMEDLL_FIXES
if (!forceUpdate && m_flLastUpdateTime > gpGlobals->time - 2.0f)
#else
if (!forceUpdate && m_flLastUpdateTime >= gpGlobals->time + 2.0f)
#endif
return;
const char *placeName = nullptr;