aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting
diff options
context:
space:
mode:
authorUbitUmarov2018-10-18 15:03:19 +0100
committerUbitUmarov2018-10-18 15:04:54 +0100
commit877a78ce91a96118009cd1c1e27a99f0baef49ae (patch)
treec25968911270241caf7fc7505c5af5d0c6e44a06 /OpenSim/Region/CoreModules/Scripting
parentmantis 7391: deliver llregionSayTo to all scripts on prim that match target s... (diff)
downloadopensim-SC-877a78ce91a96118009cd1c1e27a99f0baef49ae.zip
opensim-SC-877a78ce91a96118009cd1c1e27a99f0baef49ae.tar.gz
opensim-SC-877a78ce91a96118009cd1c1e27a99f0baef49ae.tar.bz2
opensim-SC-877a78ce91a96118009cd1c1e27a99f0baef49ae.tar.xz
change chattype on llRegionSayTo when sending to avatar viewer only.
Thanks Royale for pointing this
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs b/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs
index 99e50ac..3f4d412 100644
--- a/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs
@@ -392,7 +392,7 @@ namespace OpenSim.Region.CoreModules.Scripting.WorldComm
392 if (channel == 0) 392 if (channel == 0)
393 { 393 {
394 // Channel 0 goes to viewer ONLY 394 // Channel 0 goes to viewer ONLY
395 m_scene.SimChat(Utils.StringToBytes(msg), ChatTypeEnum.Broadcast, 0, pos, name, id, target, false, false); 395 m_scene.SimChat(Utils.StringToBytes(msg), ChatTypeEnum.Direct, 0, pos, name, id, target, false, false);
396 return; 396 return;
397 } 397 }
398 398