diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 93ce29e..c1c4af2 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -930,12 +930,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
930 | /// <param name="fromPos"></param> | 930 | /// <param name="fromPos"></param> |
931 | /// <param name="fromName"></param> | 931 | /// <param name="fromName"></param> |
932 | /// <param name="fromAgentID"></param> | 932 | /// <param name="fromAgentID"></param> |
933 | public void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID, byte source, byte audible) | 933 | public void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, |
934 | LLUUID fromAgentID, byte source, byte audible) | ||
934 | { | 935 | { |
935 | SendChatMessage(Helpers.StringToField(message), type, fromPos, fromName, fromAgentID, source, audible); | 936 | SendChatMessage(Helpers.StringToField(message), type, fromPos, fromName, fromAgentID, source, audible); |
936 | } | 937 | } |
937 | 938 | ||
938 | public void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID, byte source, byte audible) | 939 | public void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, |
940 | LLUUID fromAgentID, byte source, byte audible) | ||
939 | { | 941 | { |
940 | ChatFromSimulatorPacket reply = (ChatFromSimulatorPacket)PacketPool.Instance.GetPacket(PacketType.ChatFromSimulator); | 942 | ChatFromSimulatorPacket reply = (ChatFromSimulatorPacket)PacketPool.Instance.GetPacket(PacketType.ChatFromSimulator); |
941 | reply.ChatData.Audible = audible; | 943 | reply.ChatData.Audible = audible; |