diff options
author | mingchen | 2007-06-12 12:58:14 +0000 |
---|---|---|
committer | mingchen | 2007-06-12 12:58:14 +0000 |
commit | c1c820da38cacb0d8b5c2f2949b95508fac56ee9 (patch) | |
tree | 205c88ca9f0cc12ffdf856e6199824910027710b /OpenSim | |
parent | *Attempt trunk crash fix (diff) | |
download | opensim-SC_OLD-c1c820da38cacb0d8b5c2f2949b95508fac56ee9.zip opensim-SC_OLD-c1c820da38cacb0d8b5c2f2949b95508fac56ee9.tar.gz opensim-SC_OLD-c1c820da38cacb0d8b5c2f2949b95508fac56ee9.tar.bz2 opensim-SC_OLD-c1c820da38cacb0d8b5c2f2949b95508fac56ee9.tar.xz |
*Bug fixed, moving the code the the correct place so the right info is sent (hopefully)
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/OpenSim.RegionServer/Client/ClientView.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/OpenSim.RegionServer/Client/ClientView.cs b/OpenSim/OpenSim.RegionServer/Client/ClientView.cs index ef6684f..f6bdad9 100644 --- a/OpenSim/OpenSim.RegionServer/Client/ClientView.cs +++ b/OpenSim/OpenSim.RegionServer/Client/ClientView.cs | |||
@@ -143,8 +143,6 @@ namespace OpenSim.RegionServer.Client | |||
143 | this.RegisterLocalPacketHandlers(); | 143 | this.RegisterLocalPacketHandlers(); |
144 | 144 | ||
145 | 145 | ||
146 | //m_world.parcelManager.sendParcelOverlay(this); | ||
147 | m_world.estateManager.sendRegionInfoPacket(this); | ||
148 | 146 | ||
149 | ClientThread = new Thread(new ThreadStart(AuthUser)); | 147 | ClientThread = new Thread(new ThreadStart(AuthUser)); |
150 | ClientThread.IsBackground = true; | 148 | ClientThread.IsBackground = true; |
@@ -315,6 +313,9 @@ namespace OpenSim.RegionServer.Client | |||
315 | this.SetupInventory(sessionInfo); | 313 | this.SetupInventory(sessionInfo); |
316 | } | 314 | } |
317 | 315 | ||
316 | m_world.parcelManager.sendParcelOverlay(this); | ||
317 | m_world.estateManager.sendRegionInfoPacket(this); | ||
318 | |||
318 | ClientLoop(); | 319 | ClientLoop(); |
319 | } | 320 | } |
320 | } | 321 | } |