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

This commit is contained in:
mingchen
2007-06-12 12:58:14 +00:00
parent a6b7435efa
commit c1c820da38

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();
}
}