*Bug fixed, moving the code the the correct place so the right info is sent (hopefully)

zircon^2
mingchen 2007-06-12 12:58:14 +00:00
parent a6b7435efa
commit c1c820da38
1 changed files with 3 additions and 2 deletions

View File

@ -143,8 +143,6 @@ namespace OpenSim.RegionServer.Client
this.RegisterLocalPacketHandlers();
//m_world.parcelManager.sendParcelOverlay(this);
m_world.estateManager.sendRegionInfoPacket(this);
ClientThread = new Thread(new ThreadStart(AuthUser));
ClientThread.IsBackground = true;
@ -315,6 +313,9 @@ namespace OpenSim.RegionServer.Client
this.SetupInventory(sessionInfo);
}
m_world.parcelManager.sendParcelOverlay(this);
m_world.estateManager.sendRegionInfoPacket(this);
ClientLoop();
}
}