diff options
author | diva | 2009-07-27 19:20:48 +0000 |
---|---|---|
committer | diva | 2009-07-27 19:20:48 +0000 |
commit | 5ca02f0a082087b6cfb2eb5e086755a3554776ed (patch) | |
tree | 9ba3a3606a56b1580ae9e547c4a4a68a64001d49 /OpenSim/Region | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-5ca02f0a082087b6cfb2eb5e086755a3554776ed.zip opensim-SC_OLD-5ca02f0a082087b6cfb2eb5e086755a3554776ed.tar.gz opensim-SC_OLD-5ca02f0a082087b6cfb2eb5e086755a3554776ed.tar.bz2 opensim-SC_OLD-5ca02f0a082087b6cfb2eb5e086755a3554776ed.tar.xz |
This does NOT address the issue in mantis #3940, but it may avoid the exception reported there by WiLLuMPJuH Huisman pertaining to TeleportFailedPacket.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index ee31773..30d6fb1 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -1750,6 +1750,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1750 | TeleportFailedPacket tpFailed = (TeleportFailedPacket)PacketPool.Instance.GetPacket(PacketType.TeleportFailed); | 1750 | TeleportFailedPacket tpFailed = (TeleportFailedPacket)PacketPool.Instance.GetPacket(PacketType.TeleportFailed); |
1751 | tpFailed.Info.AgentID = AgentId; | 1751 | tpFailed.Info.AgentID = AgentId; |
1752 | tpFailed.Info.Reason = Utils.StringToBytes(reason); | 1752 | tpFailed.Info.Reason = Utils.StringToBytes(reason); |
1753 | tpFailed.AlertInfo = new TeleportFailedPacket.AlertInfoBlock[0]; | ||
1753 | 1754 | ||
1754 | // Hack to get this out immediately and skip throttles | 1755 | // Hack to get this out immediately and skip throttles |
1755 | OutPacket(tpFailed, ThrottleOutPacketType.Unknown); | 1756 | OutPacket(tpFailed, ThrottleOutPacketType.Unknown); |