diff options
author | mingchen | 2007-06-29 01:58:16 +0000 |
---|---|---|
committer | mingchen | 2007-06-29 01:58:16 +0000 |
commit | 90b01ba80ccaa69bf7cf76be6ce0a6ca05717d6c (patch) | |
tree | 7428eccc93a3f64f46e08d7269bc337f3d26d8a8 /OpenSim/Region | |
parent | * Removed J# language support because it has issues with Mono. (diff) | |
download | opensim-SC_OLD-90b01ba80ccaa69bf7cf76be6ce0a6ca05717d6c.zip opensim-SC_OLD-90b01ba80ccaa69bf7cf76be6ce0a6ca05717d6c.tar.gz opensim-SC_OLD-90b01ba80ccaa69bf7cf76be6ce0a6ca05717d6c.tar.bz2 opensim-SC_OLD-90b01ba80ccaa69bf7cf76be6ce0a6ca05717d6c.tar.xz |
*Hopefully fixed the empty dialog box error on client when logging in on sandbox mode
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalBackEndServices.cs | 1 | ||||
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalUserServices.cs | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs index ae47890..26834be 100644 --- a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs +++ b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs | |||
@@ -182,7 +182,6 @@ namespace OpenSim.Region.Communications.Local | |||
182 | /// <returns></returns> | 182 | /// <returns></returns> |
183 | public bool AddNewSession(ulong regionHandle, Login loginData) | 183 | public bool AddNewSession(ulong regionHandle, Login loginData) |
184 | { | 184 | { |
185 | //Console.WriteLine(" comms manager been told to expect new user"); | ||
186 | AgentCircuitData agent = new AgentCircuitData(); | 185 | AgentCircuitData agent = new AgentCircuitData(); |
187 | agent.AgentID = loginData.Agent; | 186 | agent.AgentID = loginData.Agent; |
188 | agent.firstname = loginData.First; | 187 | agent.firstname = loginData.First; |
diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index 508a3f9..6cf254b 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs | |||
@@ -88,7 +88,7 @@ namespace OpenSim.Region.Communications.Local | |||
88 | "'position':[r" + theUser.homeLocation.X.ToString() + ",r" + theUser.homeLocation.Y.ToString() + ",r" + theUser.homeLocation.Z.ToString() + "], " + | 88 | "'position':[r" + theUser.homeLocation.X.ToString() + ",r" + theUser.homeLocation.Y.ToString() + ",r" + theUser.homeLocation.Z.ToString() + "], " + |
89 | "'look_at':[r" + theUser.homeLocation.X.ToString() + ",r" + theUser.homeLocation.Y.ToString() + ",r" + theUser.homeLocation.Z.ToString() + "]}"; | 89 | "'look_at':[r" + theUser.homeLocation.X.ToString() + ",r" + theUser.homeLocation.Y.ToString() + ",r" + theUser.homeLocation.Z.ToString() + "]}"; |
90 | string capsPath = Util.GetRandomCapsPath(); | 90 | string capsPath = Util.GetRandomCapsPath(); |
91 | response.SimAddress = reg.CommsIPListenAddr; | 91 | response.SimAddress = reg.CommsExternalAddress; |
92 | response.SimPort = (Int32)reg.CommsIPListenPort; | 92 | response.SimPort = (Int32)reg.CommsIPListenPort; |
93 | response.RegionX = reg.RegionLocX ; | 93 | response.RegionX = reg.RegionLocX ; |
94 | response.RegionY = reg.RegionLocY ; | 94 | response.RegionY = reg.RegionLocY ; |