aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/OSChatMessage.cs
diff options
context:
space:
mode:
authorMelanie2012-06-28 21:23:42 +0200
committerMelanie2012-06-28 21:23:42 +0200
commitc87f0ac2261d1aa5226957aff63bfc8ac0efaffd (patch)
tree5a8ac8569730595044c9310a1f5321bff1f5e109 /OpenSim/Framework/OSChatMessage.cs
parentReturn NPC instead of AGENT in the detect parameters for touch, collision and (diff)
downloadopensim-SC_OLD-c87f0ac2261d1aa5226957aff63bfc8ac0efaffd.zip
opensim-SC_OLD-c87f0ac2261d1aa5226957aff63bfc8ac0efaffd.tar.gz
opensim-SC_OLD-c87f0ac2261d1aa5226957aff63bfc8ac0efaffd.tar.bz2
opensim-SC_OLD-c87f0ac2261d1aa5226957aff63bfc8ac0efaffd.tar.xz
Fix llRegionSayTo the right way
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>