Add SceneViewer changes for removing unused client flags

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-12-19 21:01:46 +00:00
parent deb50cd410
commit 4de98ca4c8
1 changed files with 2 additions and 4 deletions

View File

@ -145,8 +145,7 @@ namespace OpenSim.Region.Framework.Scenes
// "[SCENE PRESENCE]: Fully updating prim {0}, {1} - part timestamp {2}",
// part.Name, part.UUID, part.TimeStampFull);
part.SendFullUpdate(m_presence.ControllingClient,
m_presence.GenerateClientFlags(part.UUID));
part.SendFullUpdate(m_presence.ControllingClient);
// We'll update to the part's timestamp rather than
// the current time to avoid the race condition
@ -186,8 +185,7 @@ namespace OpenSim.Region.Framework.Scenes
continue;
}
part.SendFullUpdate(m_presence.ControllingClient,
m_presence.GenerateClientFlags(part.UUID));
part.SendFullUpdate(m_presence.ControllingClient);
}
}
}