mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
reduce 'echos' on several regions per instance (mantis 7754)
This commit is contained in:
@@ -294,7 +294,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Chat
|
||||
s.ForEachScenePresence(
|
||||
delegate(ScenePresence presence)
|
||||
{
|
||||
if (destination != UUID.Zero && presence.UUID != destination)
|
||||
if (destination != UUID.Zero &&
|
||||
(presence.UUID != destination || receiverIDs.Contains(presence.UUID)))
|
||||
return;
|
||||
ILandObject Presencecheck = s.LandChannel.GetLandObject(presence.AbsolutePosition.X, presence.AbsolutePosition.Y);
|
||||
if (Presencecheck != null)
|
||||
|
||||
Reference in New Issue
Block a user