aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMelanie Thielker2009-02-22 20:17:12 +0000
committerMelanie Thielker2009-02-22 20:17:12 +0000
commit913654f2c9ae26dc7b2604d5e4b98f176cce6cb3 (patch)
treeda47c6f07f6fe9e8e072fe20118b724c47923271 /OpenSim
parentFirst step in giving the messaging server the modular refactoring treatment. ... (diff)
downloadopensim-SC_OLD-913654f2c9ae26dc7b2604d5e4b98f176cce6cb3.zip
opensim-SC_OLD-913654f2c9ae26dc7b2604d5e4b98f176cce6cb3.tar.gz
opensim-SC_OLD-913654f2c9ae26dc7b2604d5e4b98f176cce6cb3.tar.bz2
opensim-SC_OLD-913654f2c9ae26dc7b2604d5e4b98f176cce6cb3.tar.xz
Allow delivery of object messages gridwide
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/InstantMessage/InstantMessageModule.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/InstantMessage/InstantMessageModule.cs b/OpenSim/Region/CoreModules/Avatar/InstantMessage/InstantMessageModule.cs
index 845042c..01717ce 100644
--- a/OpenSim/Region/CoreModules/Avatar/InstantMessage/InstantMessageModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/InstantMessage/InstantMessageModule.cs
@@ -118,7 +118,8 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage
118 118
119 if ( dialog != (byte)InstantMessageDialog.MessageFromAgent 119 if ( dialog != (byte)InstantMessageDialog.MessageFromAgent
120 && dialog != (byte)InstantMessageDialog.StartTyping 120 && dialog != (byte)InstantMessageDialog.StartTyping
121 && dialog != (byte)InstantMessageDialog.StopTyping) 121 && dialog != (byte)InstantMessageDialog.StopTyping
122 && dialog != (byte)InstantMessageDialog.MessageFromObject)
122 { 123 {
123 return; 124 return;
124 } 125 }