diff options
author | UbitUmarov | 2012-06-29 01:00:38 +0100 |
---|---|---|
committer | UbitUmarov | 2012-06-29 01:00:38 +0100 |
commit | 58b44171404a8a52a434e53ee437c670b226e3ac (patch) | |
tree | c87b1c20a3e3deeee56c33719ca8abed96499bdf /OpenSim/Framework/OSChatMessage.cs | |
parent | reactivate physics raycasts on llCastRay() until it's clear what is its prob... (diff) | |
parent | Fix llRegionSayTo the right way (diff) | |
download | opensim-SC_OLD-58b44171404a8a52a434e53ee437c670b226e3ac.zip opensim-SC_OLD-58b44171404a8a52a434e53ee437c670b226e3ac.tar.gz opensim-SC_OLD-58b44171404a8a52a434e53ee437c670b226e3ac.tar.bz2 opensim-SC_OLD-58b44171404a8a52a434e53ee437c670b226e3ac.tar.xz |
Merge branch 'avination' into ubitwork
Diffstat (limited to 'OpenSim/Framework/OSChatMessage.cs')
-rw-r--r-- | OpenSim/Framework/OSChatMessage.cs | 7 |
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> |