don't send updates for deleted agents
parent
ba8e1efb43
commit
5cca6e7d16
|
@ -3975,7 +3975,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
else if (update.Entity is ScenePresence)
|
else if (update.Entity is ScenePresence)
|
||||||
{
|
{
|
||||||
ScenePresence presence = (ScenePresence)update.Entity;
|
ScenePresence presence = (ScenePresence)update.Entity;
|
||||||
|
if (presence.IsDeleted)
|
||||||
|
continue;
|
||||||
// If ParentUUID is not UUID.Zero and ParentID is 0, this
|
// If ParentUUID is not UUID.Zero and ParentID is 0, this
|
||||||
// avatar is in the process of crossing regions while
|
// avatar is in the process of crossing regions while
|
||||||
// sat on an object. In this state, we don't want any
|
// sat on an object. In this state, we don't want any
|
||||||
|
|
Loading…
Reference in New Issue