aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/General/Types/Login.cs
diff options
context:
space:
mode:
authorMW2007-10-22 09:04:55 +0000
committerMW2007-10-22 09:04:55 +0000
commit5bf6b245908e15dd3a5a47ec6b2f4602f321ebc5 (patch)
treed430df408304129a81eeb0a8fc43a8669bbdfb33 /OpenSim/Framework/General/Types/Login.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 'OpenSim/Framework/General/Types/Login.cs')
-rw-r--r--OpenSim/Framework/General/Types/Login.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/General/Types/Login.cs b/OpenSim/Framework/General/Types/Login.cs
index 0a8c0cb..fc1f3ad 100644
--- a/OpenSim/Framework/General/Types/Login.cs
+++ b/OpenSim/Framework/General/Types/Login.cs
@@ -40,10 +40,11 @@ namespace OpenSim.Framework.Types
40 public LLUUID BaseFolder; 40 public LLUUID BaseFolder;
41 public uint CircuitCode; 41 public uint CircuitCode;
42 public string CapsPath =""; 42 public string CapsPath ="";
43 public LLVector3 StartPos;
43 44
44 public Login() 45 public Login()
45 { 46 {
46 47 StartPos = new LLVector3(128, 128, 70);
47 } 48 }
48 } 49 }
49} 50}