diff options
author | Melanie | 2012-10-26 21:13:01 +0100 |
---|---|---|
committer | Melanie | 2012-10-26 21:13:01 +0100 |
commit | 26cc57b6cafda5168baab49cabe34d96f01dbd6d (patch) | |
tree | 94e078a75ab68825e64b15498f67d82988858dc9 /OpenSim/Region/ClientStack | |
parent | Merge branch 'master' into careminster (diff) | |
parent | minor: Make the error thrown logged when a simulator in grid mode is trying t... (diff) | |
download | opensim-SC_OLD-26cc57b6cafda5168baab49cabe34d96f01dbd6d.zip opensim-SC_OLD-26cc57b6cafda5168baab49cabe34d96f01dbd6d.tar.gz opensim-SC_OLD-26cc57b6cafda5168baab49cabe34d96f01dbd6d.tar.bz2 opensim-SC_OLD-26cc57b6cafda5168baab49cabe34d96f01dbd6d.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Region/CoreModules/Avatar/Chat/ChatModule.cs
OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 67ce48e..3c65647 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -846,8 +846,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
846 | OutPacket(mov, ThrottleOutPacketType.Unknown); | 846 | OutPacket(mov, ThrottleOutPacketType.Unknown); |
847 | } | 847 | } |
848 | 848 | ||
849 | public void SendChatMessage(string message, byte type, Vector3 fromPos, string fromName, | 849 | public void SendChatMessage( |
850 | UUID fromAgentID, byte source, byte audible) | 850 | string message, byte type, Vector3 fromPos, string fromName, |
851 | UUID fromAgentID, UUID ownerID, byte source, byte audible) | ||
851 | { | 852 | { |
852 | ChatFromSimulatorPacket reply = (ChatFromSimulatorPacket)PacketPool.Instance.GetPacket(PacketType.ChatFromSimulator); | 853 | ChatFromSimulatorPacket reply = (ChatFromSimulatorPacket)PacketPool.Instance.GetPacket(PacketType.ChatFromSimulator); |
853 | reply.ChatData.Audible = audible; | 854 | reply.ChatData.Audible = audible; |
@@ -856,7 +857,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
856 | reply.ChatData.SourceType = source; | 857 | reply.ChatData.SourceType = source; |
857 | reply.ChatData.Position = fromPos; | 858 | reply.ChatData.Position = fromPos; |
858 | reply.ChatData.FromName = Util.StringToBytes256(fromName); | 859 | reply.ChatData.FromName = Util.StringToBytes256(fromName); |
859 | reply.ChatData.OwnerID = fromAgentID; | 860 | reply.ChatData.OwnerID = ownerID; |
860 | reply.ChatData.SourceID = fromAgentID; | 861 | reply.ChatData.SourceID = fromAgentID; |
861 | 862 | ||
862 | OutPacket(reply, ThrottleOutPacketType.Unknown); | 863 | OutPacket(reply, ThrottleOutPacketType.Unknown); |