aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-17 05:57:58 +0000
committerMelanie Thielker2008-11-17 05:57:58 +0000
commit598316c89051e8e8d6633520da63a7d44fd80bbd (patch)
treeb1607d4a381225788bcc9b997af60e0969657e8a /OpenSim/Region/ScriptEngine
parentBack out the attachment location patch to debug a crash (diff)
downloadopensim-SC_OLD-598316c89051e8e8d6633520da63a7d44fd80bbd.zip
opensim-SC_OLD-598316c89051e8e8d6633520da63a7d44fd80bbd.tar.gz
opensim-SC_OLD-598316c89051e8e8d6633520da63a7d44fd80bbd.tar.bz2
opensim-SC_OLD-598316c89051e8e8d6633520da63a7d44fd80bbd.tar.xz
Make object chat come from the root prim's center, rather than trying to make
it come from a child prim position.
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 2408a5e..b189ffd 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -672,7 +672,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
672 text = text.Substring(0, 1023); 672 text = text.Substring(0, 1023);
673 673
674 World.SimChat(Utils.StringToBytes(text), 674 World.SimChat(Utils.StringToBytes(text),
675 ChatTypeEnum.Whisper, channelID, m_host.AbsolutePosition, m_host.Name, m_host.UUID, false); 675 ChatTypeEnum.Whisper, channelID, m_host.ParentGroup.RootPart.AbsolutePosition, m_host.Name, m_host.UUID, false);
676 676
677 IWorldComm wComm = m_ScriptEngine.World.RequestModuleInterface<IWorldComm>(); 677 IWorldComm wComm = m_ScriptEngine.World.RequestModuleInterface<IWorldComm>();
678 wComm.DeliverMessage(ChatTypeEnum.Whisper, channelID, m_host.Name, m_host.UUID, text); 678 wComm.DeliverMessage(ChatTypeEnum.Whisper, channelID, m_host.Name, m_host.UUID, text);
@@ -686,7 +686,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
686 text = text.Substring(0, 1023); 686 text = text.Substring(0, 1023);
687 687
688 World.SimChat(Utils.StringToBytes(text), 688 World.SimChat(Utils.StringToBytes(text),
689 ChatTypeEnum.Say, channelID, m_host.AbsolutePosition, m_host.Name, m_host.UUID, false); 689 ChatTypeEnum.Say, channelID, m_host.ParentGroup.RootPart.AbsolutePosition, m_host.Name, m_host.UUID, false);
690 690
691 IWorldComm wComm = m_ScriptEngine.World.RequestModuleInterface<IWorldComm>(); 691 IWorldComm wComm = m_ScriptEngine.World.RequestModuleInterface<IWorldComm>();
692 wComm.DeliverMessage(ChatTypeEnum.Say, channelID, m_host.Name, m_host.UUID, text); 692 wComm.DeliverMessage(ChatTypeEnum.Say, channelID, m_host.Name, m_host.UUID, text);
@@ -700,7 +700,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
700 text = text.Substring(0, 1023); 700 text = text.Substring(0, 1023);
701 701
702 World.SimChat(Utils.StringToBytes(text), 702 World.SimChat(Utils.StringToBytes(text),
703 ChatTypeEnum.Shout, channelID, m_host.AbsolutePosition, m_host.Name, m_host.UUID, true); 703 ChatTypeEnum.Shout, channelID, m_host.ParentGroup.RootPart.AbsolutePosition, m_host.Name, m_host.UUID, true);
704 704
705 IWorldComm wComm = m_ScriptEngine.World.RequestModuleInterface<IWorldComm>(); 705 IWorldComm wComm = m_ScriptEngine.World.RequestModuleInterface<IWorldComm>();
706 wComm.DeliverMessage(ChatTypeEnum.Shout, channelID, m_host.Name, m_host.UUID, text); 706 wComm.DeliverMessage(ChatTypeEnum.Shout, channelID, m_host.Name, m_host.UUID, text);