aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/UserLoginService.cs
diff options
context:
space:
mode:
authorJeff Ames2008-05-14 06:09:39 +0000
committerJeff Ames2008-05-14 06:09:39 +0000
commitb7a0855c3afea27f207655fca25651b19b41636a (patch)
treed049510e51b337a82ebbf88e197b3141511d9155 /OpenSim/Grid/UserServer/UserLoginService.cs
parentApplied Patch mantis 1220. Implements llGetStartParameter. Thanks! (diff)
downloadopensim-SC_OLD-b7a0855c3afea27f207655fca25651b19b41636a.zip
opensim-SC_OLD-b7a0855c3afea27f207655fca25651b19b41636a.tar.gz
opensim-SC_OLD-b7a0855c3afea27f207655fca25651b19b41636a.tar.bz2
opensim-SC_OLD-b7a0855c3afea27f207655fca25651b19b41636a.tar.xz
More formatting cleanup. Minor refactoring.
Diffstat (limited to 'OpenSim/Grid/UserServer/UserLoginService.cs')
-rw-r--r--OpenSim/Grid/UserServer/UserLoginService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs
index b123b8c..32b1ada 100644
--- a/OpenSim/Grid/UserServer/UserLoginService.cs
+++ b/OpenSim/Grid/UserServer/UserLoginService.cs
@@ -163,7 +163,8 @@ namespace OpenSim.Grid.UserServer
163 163
164 theUser.CurrentAgent.Region = SimInfo.UUID; 164 theUser.CurrentAgent.Region = SimInfo.UUID;
165 theUser.CurrentAgent.Handle = SimInfo.regionHandle; 165 theUser.CurrentAgent.Handle = SimInfo.regionHandle;
166 if (start_x >= 0 && start_y >= 0 && start_z >= 0) { 166 if (start_x >= 0 && start_y >= 0 && start_z >= 0)
167 {
167 LLVector3 tmp_v = new LLVector3(start_x, start_y, start_z); 168 LLVector3 tmp_v = new LLVector3(start_x, start_y, start_z);
168 theUser.CurrentAgent.Position = tmp_v; 169 theUser.CurrentAgent.Position = tmp_v;
169 } 170 }