diff --git a/src/game/server/ddracecommands.cpp b/src/game/server/ddracecommands.cpp index a0eeaf950..e3105c0e6 100644 --- a/src/game/server/ddracecommands.cpp +++ b/src/game/server/ddracecommands.cpp @@ -298,6 +298,8 @@ void CGameContext::ConTeleport(IConsole::IResult *pResult, void *pUserData) if (pChr && pSelf->GetPlayerChar(TeleTo)) { pChr->Core()->m_Pos = pSelf->m_apPlayers[TeleTo]->m_ViewPos; + pChr->m_Pos = pSelf->m_apPlayers[TeleTo]->m_ViewPos; + pChr->m_PrevPos = pSelf->m_apPlayers[TeleTo]->m_ViewPos; pChr->m_DDRaceState = DDRACE_CHEAT; } }