avinationmerge
UbitUmarov 2014-08-03 02:26:39 +01:00
parent b9443b186e
commit cc16fe68cc
1 changed files with 4 additions and 3 deletions

View File

@ -5460,11 +5460,12 @@ namespace OpenSim.Region.Framework.Scenes
if (p.IsDeleted || p == this || p.ControllingClient == null || !p.ControllingClient.IsActive)
continue;
// those not on parcel dont see me
if (currentParcelUUID != p.currentParcelUUID)
{
if (p.GodLevel < 200)
killsToSendto.Add(p); // they dont see me
killsToSendto.Add(p);
if (GodLevel < 200 && p.ParcelHideThisAvatar)
killsToSendme.Add(p);
}
else
{