aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
authorlbsa712007-09-20 23:47:32 +0000
committerlbsa712007-09-20 23:47:32 +0000
commitca611c6668c5a063ce92feb72ce14866fc3322a3 (patch)
tree15f856675fc2d12d73c96cd7f65ab83ea1681b15 /OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
parent* Some more presence refactoring (diff)
downloadopensim-SC_OLD-ca611c6668c5a063ce92feb72ce14866fc3322a3.zip
opensim-SC_OLD-ca611c6668c5a063ce92feb72ce14866fc3322a3.tar.gz
opensim-SC_OLD-ca611c6668c5a063ce92feb72ce14866fc3322a3.tar.bz2
opensim-SC_OLD-ca611c6668c5a063ce92feb72ce14866fc3322a3.tar.xz
* even more renaming and refactoring; the cleaning woman is on call.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectPart.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectPart.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
index 468def0..1b667b8 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
@@ -700,7 +700,7 @@ namespace OpenSim.Region.Environment.Scenes
700 List<ScenePresence> avatars = m_parentGroup.GetScenePresences(); 700 List<ScenePresence> avatars = m_parentGroup.GetScenePresences();
701 for (int i = 0; i < avatars.Count; i++) 701 for (int i = 0; i < avatars.Count; i++)
702 { 702 {
703 m_parentGroup.SendPartFullUpdate(avatars[i].ControllingClient, this); 703 m_parentGroup.SendPartFullUpdate(avatars[i]._ControllingClient, this);
704 } 704 }
705 } 705 }
706 706
@@ -764,7 +764,7 @@ namespace OpenSim.Region.Environment.Scenes
764 List<ScenePresence> avatars = m_parentGroup.GetScenePresences(); 764 List<ScenePresence> avatars = m_parentGroup.GetScenePresences();
765 for (int i = 0; i < avatars.Count; i++) 765 for (int i = 0; i < avatars.Count; i++)
766 { 766 {
767 m_parentGroup.SendPartTerseUpdate(avatars[i].ControllingClient, this); 767 m_parentGroup.SendPartTerseUpdate(avatars[i]._ControllingClient, this);
768 } 768 }
769 } 769 }
770 770