diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index e2c6a08..5dda9e1 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -624,19 +624,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
624 | } | 624 | } |
625 | } | 625 | } |
626 | 626 | ||
627 | /// <summary> | 627 | public bool IsChildAgent { get; set; } |
628 | /// If this is true, agent doesn't have a representation in this scene. | ||
629 | /// this is an agent 'looking into' this scene from a nearby scene(region) | ||
630 | /// | ||
631 | /// if False, this agent has a representation in this scene | ||
632 | /// </summary> | ||
633 | private bool m_isChildAgent = true; | ||
634 | |||
635 | public bool IsChildAgent | ||
636 | { | ||
637 | get { return m_isChildAgent; } | ||
638 | set { m_isChildAgent = value; } | ||
639 | } | ||
640 | 628 | ||
641 | public uint ParentID | 629 | public uint ParentID |
642 | { | 630 | { |
@@ -753,6 +741,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
753 | { | 741 | { |
754 | AttachmentsSyncLock = new Object(); | 742 | AttachmentsSyncLock = new Object(); |
755 | 743 | ||
744 | IsChildAgent = true; | ||
756 | m_sendCourseLocationsMethod = SendCoarseLocationsDefault; | 745 | m_sendCourseLocationsMethod = SendCoarseLocationsDefault; |
757 | Animator = new ScenePresenceAnimator(this); | 746 | Animator = new ScenePresenceAnimator(this); |
758 | PresenceType = type; | 747 | PresenceType = type; |