Fixing up some remaining attachment issues

0.6.0-stable
Melanie Thielker 2008-11-07 07:13:52 +00:00
parent 48c6d052d9
commit 106904152a
1 changed files with 4 additions and 6 deletions

View File

@ -681,7 +681,10 @@ namespace OpenSim.Region.Environment.Scenes
else
{
//never been sent to client before so do full update
ScenePartUpdate update = new ScenePartUpdate();
update.FullID = part.UUID;
update.LastFullUpdateTime = part.TimeStampFull;
m_updateTimes.Add(part.UUID, update);
// Attachment handling
//
@ -694,11 +697,6 @@ namespace OpenSim.Region.Environment.Scenes
continue;
}
ScenePartUpdate update = new ScenePartUpdate();
update.FullID = part.UUID;
update.LastFullUpdateTime = part.TimeStampFull;
m_updateTimes.Add(part.UUID, update);
part.SendFullUpdate(ControllingClient,
GenerateClientFlags(part.UUID));
updateCount++;