diff options
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index eec1b21..61f66d9 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -5459,12 +5459,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
5459 | { | 5459 | { |
5460 | if (p.IsDeleted || p == this || p.ControllingClient == null || !p.ControllingClient.IsActive) | 5460 | if (p.IsDeleted || p == this || p.ControllingClient == null || !p.ControllingClient.IsActive) |
5461 | continue; | 5461 | continue; |
5462 | 5462 | ||
5463 | // those not on parcel dont see me | ||
5464 | if (currentParcelUUID != p.currentParcelUUID) | 5463 | if (currentParcelUUID != p.currentParcelUUID) |
5465 | { | 5464 | { |
5466 | if (p.GodLevel < 200) | 5465 | if (p.GodLevel < 200) |
5467 | killsToSendto.Add(p); // they dont see me | 5466 | killsToSendto.Add(p); |
5467 | if (GodLevel < 200 && p.ParcelHideThisAvatar) | ||
5468 | killsToSendme.Add(p); | ||
5468 | } | 5469 | } |
5469 | else | 5470 | else |
5470 | { | 5471 | { |