diff options
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs index adc9496..869efd7 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs | |||
@@ -116,6 +116,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
116 | /// <param name="remoteClient"></param> | 116 | /// <param name="remoteClient"></param> |
117 | public void RequestPrim(uint primLocalID, IClientAPI remoteClient) | 117 | public void RequestPrim(uint primLocalID, IClientAPI remoteClient) |
118 | { | 118 | { |
119 | // m_log.DebugFormat("[SCENE]: {0} requested full update for {1}", remoteClient.Name, primLocalID); | ||
120 | |||
119 | List<EntityBase> EntityList = GetEntities(); | 121 | List<EntityBase> EntityList = GetEntities(); |
120 | 122 | ||
121 | foreach (EntityBase ent in EntityList) | 123 | foreach (EntityBase ent in EntityList) |
@@ -124,7 +126,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
124 | { | 126 | { |
125 | if (((SceneObjectGroup)ent).LocalId == primLocalID) | 127 | if (((SceneObjectGroup)ent).LocalId == primLocalID) |
126 | { | 128 | { |
127 | // m_log.DebugFormat("[SCENE]: Received full update request for {0} from {1}", primLocalID, remoteClient.Name); | ||
128 | ((SceneObjectGroup)ent).SendFullUpdateToClient(remoteClient); | 129 | ((SceneObjectGroup)ent).SendFullUpdateToClient(remoteClient); |
129 | return; | 130 | return; |
130 | } | 131 | } |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 451c6f9..fe5e948 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -1519,7 +1519,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1519 | { | 1519 | { |
1520 | // if (IsAttachment) | 1520 | // if (IsAttachment) |
1521 | // m_log.DebugFormat( | 1521 | // m_log.DebugFormat( |
1522 | // "[SOG]: Sending part full update to {0} for {1} {2}", remoteClient.Name, part.Name, part.LocalId); | 1522 | // "[SOG]: Sending part full update to {0} for {1} {2}", remoteClient.Name, part.Name, part.LocalId); |
1523 | 1523 | ||
1524 | if (m_rootPart.UUID == part.UUID) | 1524 | if (m_rootPart.UUID == part.UUID) |
1525 | { | 1525 | { |
@@ -2033,7 +2033,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2033 | public void ScheduleGroupForFullUpdate() | 2033 | public void ScheduleGroupForFullUpdate() |
2034 | { | 2034 | { |
2035 | // if (IsAttachment) | 2035 | // if (IsAttachment) |
2036 | // m_log.DebugFormat("[SOG]: Scheduling full update for {0} {1}", Name, UUID); | 2036 | // m_log.DebugFormat("[SOG]: Scheduling full update for {0} {1}", Name, LocalId); |
2037 | 2037 | ||
2038 | checkAtTargets(); | 2038 | checkAtTargets(); |
2039 | RootPart.ScheduleFullUpdate(); | 2039 | RootPart.ScheduleFullUpdate(); |
@@ -2072,7 +2072,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2072 | if (IsDeleted) | 2072 | if (IsDeleted) |
2073 | return; | 2073 | return; |
2074 | 2074 | ||
2075 | // m_log.DebugFormat("[SOG]: Sending immediate full group update for {0} {1}", Name, UUID); | 2075 | // m_log.DebugFormat("[SOG]: Sending immediate full group update for {0} {1}", Name, LocalId); |
2076 | 2076 | ||
2077 | RootPart.SendFullUpdateToAllClients(); | 2077 | RootPart.SendFullUpdateToAllClients(); |
2078 | 2078 | ||