aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService
diff options
context:
space:
mode:
authorMelanie2010-08-09 02:27:54 +0100
committerMelanie2010-08-09 02:27:54 +0100
commit1f052520ae73d336f3cd3d8f8b55651ab71d503e (patch)
treea2f97382c848cacc17afd90f7a855dd17217572d /OpenSim/Services/LLLoginService
parentMerge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff)
parentMake fallbacks work, the destination was never actually updated with the fall... (diff)
downloadopensim-SC_OLD-1f052520ae73d336f3cd3d8f8b55651ab71d503e.zip
opensim-SC_OLD-1f052520ae73d336f3cd3d8f8b55651ab71d503e.tar.gz
opensim-SC_OLD-1f052520ae73d336f3cd3d8f8b55651ab71d503e.tar.bz2
opensim-SC_OLD-1f052520ae73d336f3cd3d8f8b55651ab71d503e.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Services/LLLoginService')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index 83c3dd0..602616f 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -344,9 +344,9 @@ namespace OpenSim.Services.LLLoginService
344 // 344 //
345 // Instantiate/get the simulation interface and launch an agent at the destination 345 // Instantiate/get the simulation interface and launch an agent at the destination
346 // 346 //
347 string reason = string.Empty; 347 string reason = string.Empty;
348 GridRegion dest; 348 GridRegion dest;
349 AgentCircuitData aCircuit = LaunchAgentAtGrid(gatekeeper, destination, account, avatar, session, secureSession, position, where, clientVersion, clientIP, out where, out reason, out dest); 349 AgentCircuitData aCircuit = LaunchAgentAtGrid(gatekeeper, destination, account, avatar, session, secureSession, position, where, clientVersion, clientIP, out where, out reason, out dest);
350 destination = dest; 350 destination = dest;
351 if (aCircuit == null) 351 if (aCircuit == null)
352 { 352 {
@@ -691,7 +691,11 @@ namespace OpenSim.Services.LLLoginService
691 } 691 }
692 } 692 }
693 } 693 }
694<<<<<<< HEAD:OpenSim/Services/LLLoginService/LLLoginService.cs
694 } 695 }
696=======
697 }
698>>>>>>> master:OpenSim/Services/LLLoginService/LLLoginService.cs
695 dest = destination; 699 dest = destination;
696 if (success) 700 if (success)
697 return aCircuit; 701 return aCircuit;