diff options
author | Melanie Thielker | 2009-07-28 20:27:31 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-07-28 20:27:31 +0000 |
commit | f94985a939e0c651ced0a7ffa38d1b0f0dcac951 (patch) | |
tree | 959cc498c78f46268ed6d2a199356229231b9903 | |
parent | Add the new StatusData block to the other two searchh packets (diff) | |
download | opensim-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
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 2 |
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 | ||