diff options
Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 5 | ||||
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 779f898..05036f1 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -726,8 +726,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
726 | //Animation states | 726 | //Animation states |
727 | m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false); | 727 | m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false); |
728 | // TODO: Change default to true once the feature is supported | 728 | // TODO: Change default to true once the feature is supported |
729 | m_usePreJump = startupConfig.GetBoolean("enableprejump", false); | 729 | m_usePreJump = startupConfig.GetBoolean("enableprejump", true); |
730 | m_usePreJump = true; // Above line fails!? | ||
731 | m_maxNonphys = startupConfig.GetFloat("NonPhysicalPrimMax", m_maxNonphys); | 730 | m_maxNonphys = startupConfig.GetFloat("NonPhysicalPrimMax", m_maxNonphys); |
732 | if (RegionInfo.NonphysPrimMax > 0) | 731 | if (RegionInfo.NonphysPrimMax > 0) |
733 | { | 732 | { |
@@ -3513,7 +3512,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
3513 | if (tp == TeleportFlags.ViaLogin) | 3512 | if (tp == TeleportFlags.ViaLogin) |
3514 | { | 3513 | { |
3515 | if (land != null && !TestLandRestrictions(agent, land, out reason)) | 3514 | if (land != null && !TestLandRestrictions(agent, land, out reason)) |
3516 | { | 3515 | { |
3517 | m_log.DebugFormat("[CONNECTION BEGIN]: Denying access to {0} due to no land access", agent.AgentID.ToString()); | 3516 | m_log.DebugFormat("[CONNECTION BEGIN]: Denying access to {0} due to no land access", agent.AgentID.ToString()); |
3518 | return false; | 3517 | return false; |
3519 | } | 3518 | } |
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 83c3dd0..0bf75b0 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,7 @@ namespace OpenSim.Services.LLLoginService | |||
691 | } | 691 | } |
692 | } | 692 | } |
693 | } | 693 | } |
694 | } | 694 | } |
695 | dest = destination; | 695 | dest = destination; |
696 | if (success) | 696 | if (success) |
697 | return aCircuit; | 697 | return aCircuit; |