aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMelanie Thielker2009-07-28 20:27:31 +0000
committerMelanie Thielker2009-07-28 20:27:31 +0000
commitf94985a939e0c651ced0a7ffa38d1b0f0dcac951 (patch)
tree959cc498c78f46268ed6d2a199356229231b9903 /OpenSim
parentAdd the new StatusData block to the other two searchh packets (diff)
downloadopensim-SC_OLD-f94985a939e0c651ced0a7ffa38d1b0f0dcac951.zip
opensim-SC_OLD-f94985a939e0c651ced0a7ffa38d1b0f0dcac951.tar.gz
opensim-SC_OLD-f94985a939e0c651ced0a7ffa38d1b0f0dcac951.tar.bz2
opensim-SC_OLD-f94985a939e0c651ced0a7ffa38d1b0f0dcac951.tar.xz
Add the missing block to the alert message
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index c4018f5..c956421 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -2491,7 +2491,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
2491 public void SendAlertMessage(string message) 2491 public void SendAlertMessage(string message)
2492 { 2492 {
2493 AlertMessagePacket alertPack = (AlertMessagePacket)PacketPool.Instance.GetPacket(PacketType.AlertMessage); 2493 AlertMessagePacket alertPack = (AlertMessagePacket)PacketPool.Instance.GetPacket(PacketType.AlertMessage);
2494 alertPack.AlertData = new AlertMessagePacket.AlertDataBlock();
2494 alertPack.AlertData.Message = Utils.StringToBytes(message); 2495 alertPack.AlertData.Message = Utils.StringToBytes(message);
2496 alertPack.AlertInfo = new AlertMessagePacket.AlertInfoBlock[0];
2495 OutPacket(alertPack, ThrottleOutPacketType.Task); 2497 OutPacket(alertPack, ThrottleOutPacketType.Task);
2496 } 2498 }
2497 2499