aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/OSChatMessage.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/OSChatMessage.cs')
-rw-r--r--OpenSim/Framework/OSChatMessage.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/OSChatMessage.cs b/OpenSim/Framework/OSChatMessage.cs
index 54fa275..7450be2 100644
--- a/OpenSim/Framework/OSChatMessage.cs
+++ b/OpenSim/Framework/OSChatMessage.cs
@@ -51,6 +51,7 @@ namespace OpenSim.Framework
51 protected object m_senderObject; 51 protected object m_senderObject;
52 protected ChatTypeEnum m_type; 52 protected ChatTypeEnum m_type;
53 protected UUID m_fromID; 53 protected UUID m_fromID;
54 protected UUID m_destination = UUID.Zero;
54 55
55 public OSChatMessage() 56 public OSChatMessage()
56 { 57 {
@@ -131,6 +132,12 @@ namespace OpenSim.Framework
131 set { m_fromID = value; } 132 set { m_fromID = value; }
132 } 133 }
133 134
135 public UUID Destination
136 {
137 get { return m_destination; }
138 set { m_destination = value; }
139 }
140
134 /// <summary> 141 /// <summary>
135 /// 142 ///
136 /// </summary> 143 /// </summary>