From fcffac6fa8f52387b8cfc29604ba191f6374c33c Mon Sep 17 00:00:00 2001 From: Learath Date: Sat, 30 Sep 2023 01:27:58 +0200 Subject: [PATCH] Fix the fix to dead reckoning --- src/game/server/entities/character.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/server/entities/character.cpp b/src/game/server/entities/character.cpp index 0fe237695..987689c38 100644 --- a/src/game/server/entities/character.cpp +++ b/src/game/server/entities/character.cpp @@ -876,6 +876,7 @@ void CCharacter::TickDeferred() m_ReckoningTick = Server()->Tick(); m_SendCore = m_Core; m_ReckoningCore = m_Core; + m_ReckoningCore.SetCoreWorld(nullptr, Collision(), nullptr); m_Core.m_Reset = false; } }