From 5bf6b245908e15dd3a5a47ec6b2f4602f321ebc5 Mon Sep 17 00:00:00 2001 From: MW Date: Mon, 22 Oct 2007 09:04:55 +0000 Subject: 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). --- OpenSim/Framework/General/Types/Login.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework/General/Types/Login.cs') 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 public LLUUID BaseFolder; public uint CircuitCode; public string CapsPath =""; + public LLVector3 StartPos; public Login() { - + StartPos = new LLVector3(128, 128, 70); } } } -- cgit v1.1