Browse Source

Don't send additional spawns until client is in zone after the initial set

Image 4 years ago
parent
commit
13c7ec489f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      EQ2/source/WorldServer/zoneserver.cpp

+ 1 - 1
EQ2/source/WorldServer/zoneserver.cpp

@@ -1053,7 +1053,7 @@ void ZoneServer::CheckSendSpawnToClient(Client* client, bool initial_login) {
 		return;
 	}
 
-	if (!initial_login && !client->GetInitialSpawnsSent())
+	if (!initial_login && !client->GetInitialSpawnsSent() || (!initial_login && !client->IsReadyForUpdates()))
 		return;
 
 	Spawn* spawn = 0;