diff options
author | UbitUmarov | 2012-03-05 04:03:37 +0000 |
---|---|---|
committer | UbitUmarov | 2012-03-05 04:03:37 +0000 |
commit | a647a3768304fb53184e9337d6dac19a49ff3ed1 (patch) | |
tree | 1c4115dad23481359382a65a43a3bffbd3d6b531 /OpenSim/Region/Framework | |
parent | update UbitOde (diff) | |
parent | SL compatibility - return only points on segemtn, not ray in llCastRay (diff) | |
download | opensim-SC-a647a3768304fb53184e9337d6dac19a49ff3ed1.zip opensim-SC-a647a3768304fb53184e9337d6dac19a49ff3ed1.tar.gz opensim-SC-a647a3768304fb53184e9337d6dac19a49ff3ed1.tar.bz2 opensim-SC-a647a3768304fb53184e9337d6dac19a49ff3ed1.tar.xz |
Merge branch 'master' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 11a41aa..5d27d86 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4938,9 +4938,16 @@ Environment.Exit(1); | |||
4938 | return nearestPoint.Value; | 4938 | return nearestPoint.Value; |
4939 | } | 4939 | } |
4940 | 4940 | ||
4941 | //Ultimate backup if we have no idea where they are | 4941 | ILandObject dest = LandChannel.GetLandObject(avatar.lastKnownAllowedPosition.X, avatar.lastKnownAllowedPosition.Y); |
4942 | Debug.WriteLine("Have no idea where they are, sending them to: " + avatar.lastKnownAllowedPosition.ToString()); | 4942 | if (dest != excludeParcel) |
4943 | return avatar.lastKnownAllowedPosition; | 4943 | { |
4944 | // Ultimate backup if we have no idea where they are and | ||
4945 | // the last allowed position was in another parcel | ||
4946 | Debug.WriteLine("Have no idea where they are, sending them to: " + avatar.lastKnownAllowedPosition.ToString()); | ||
4947 | return avatar.lastKnownAllowedPosition; | ||
4948 | } | ||
4949 | |||
4950 | // else fall through to region edge | ||
4944 | } | 4951 | } |
4945 | 4952 | ||
4946 | //Go to the edge, this happens in teleporting to a region with no available parcels | 4953 | //Go to the edge, this happens in teleporting to a region with no available parcels |