summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--source/Player.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Player.cpp b/source/Player.cpp
index 16255c003..24f02e7eb 100644
--- a/source/Player.cpp
+++ b/source/Player.cpp
@@ -901,8 +901,9 @@ bool cPlayer::MoveToWorld( const char* a_WorldName )
/* Add player to all the necessary parts of the new world */
SetWorld( World );
GetWorld()->AddPlayer(this);
- GetClientHandle()->StreamChunks();
+ m_ClientHandle->HandleRespawn();
+ m_ClientHandle->StreamChunks();
return true;
}