From e732fc4e4224ab7ce897e94c29052279645915c8 Mon Sep 17 00:00:00 2001 From: Evghenii Date: Sun, 15 Sep 2024 10:56:09 -0400 Subject: [PATCH] Fixed players not updating their position in multiplayer --- src/cl_main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cl_main.cpp b/src/cl_main.cpp index e7d156b3e..b1185ec3f 100644 --- a/src/cl_main.cpp +++ b/src/cl_main.cpp @@ -2698,6 +2698,7 @@ void ServerCommands::SpawnPlayer::Execute() pPlayer->mo = pActor; pActor->player = pPlayer; pPlayer->playerstate = playerState; + pPlayer->clientTicOnServerEnd = 0; // If we were watching through this player's eyes, reattach the camera. if ( bWasWatchingPlayer )