aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local/LocalLoginService.cs
diff options
context:
space:
mode:
authorMW2007-10-22 09:04:55 +0000
committerMW2007-10-22 09:04:55 +0000
commit5bf6b245908e15dd3a5a47ec6b2f4602f321ebc5 (patch)
treed430df408304129a81eeb0a8fc43a8669bbdfb33 /OpenSim/Region/Communications/Local/LocalLoginService.cs
parentupdate so that distances aren't required in the config file (diff)
downloadopensim-SC_OLD-5bf6b245908e15dd3a5a47ec6b2f4602f321ebc5.zip
opensim-SC_OLD-5bf6b245908e15dd3a5a47ec6b2f4602f321ebc5.tar.gz
opensim-SC_OLD-5bf6b245908e15dd3a5a47ec6b2f4602f321ebc5.tar.bz2
opensim-SC_OLD-5bf6b245908e15dd3a5a47ec6b2f4602f321ebc5.tar.xz
Bug fix, so that local loginserver (in standalone mode) can set a start position (position inside the region) rather than it always being hardcoded to 128,128. Note: This bug fix is just to allow this to be set. Its not actually used yet (so users will still always start at 128,128).
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Communications/Local/LocalLoginService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs
index 9c10d04..37461c0 100644
--- a/OpenSim/Region/Communications/Local/LocalLoginService.cs
+++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs
@@ -137,7 +137,8 @@ namespace OpenSim.Region.Communications.Local
137 _login.Agent = response.AgentID; 137 _login.Agent = response.AgentID;
138 _login.Session = response.SessionID; 138 _login.Session = response.SessionID;
139 _login.SecureSession = response.SecureSessionID; 139 _login.SecureSession = response.SecureSessionID;
140 _login.CircuitCode = (uint)response.CircuitCode; 140 _login.CircuitCode = (uint)response.CircuitCode;
141 _login.StartPos = new LLVector3(128, 128, 70);
141 _login.CapsPath = capsPath; 142 _login.CapsPath = capsPath;
142 143
143 if( OnLoginToRegion != null ) 144 if( OnLoginToRegion != null )