diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index d9dc6b7..bbaa08e 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -9303,10 +9303,22 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
9303 | { | 9303 | { |
9304 | UUID invoice = messagePacket.MethodData.Invoice; | 9304 | UUID invoice = messagePacket.MethodData.Invoice; |
9305 | UUID SenderID = messagePacket.AgentData.AgentID; | 9305 | UUID SenderID = messagePacket.AgentData.AgentID; |
9306 | UInt32 param1 = Convert.ToUInt32(Utils.BytesToString(messagePacket.ParamList[1].Parameter)); | 9306 | UInt32 param1 = 0u; |
9307 | 9307 | ||
9308 | string command = (string)Utils.BytesToString(messagePacket.ParamList[0].Parameter); | 9308 | string command = (string)Utils.BytesToString(messagePacket.ParamList[0].Parameter); |
9309 | 9309 | ||
9310 | if (command != "info ui") | ||
9311 | { | ||
9312 | try | ||
9313 | { | ||
9314 | param1 = Convert.ToUInt32(Utils.BytesToString(messagePacket.ParamList[1].Parameter)); | ||
9315 | } | ||
9316 | catch (Exception ex) | ||
9317 | { | ||
9318 | |||
9319 | } | ||
9320 | } | ||
9321 | |||
9310 | EstateManageTelehub handlerEstateManageTelehub = OnEstateManageTelehub; | 9322 | EstateManageTelehub handlerEstateManageTelehub = OnEstateManageTelehub; |
9311 | if (handlerEstateManageTelehub != null) | 9323 | if (handlerEstateManageTelehub != null) |
9312 | { | 9324 | { |