diff options
author | Melanie | 2010-12-07 23:01:42 +0100 |
---|---|---|
committer | Melanie | 2010-12-07 23:01:42 +0100 |
commit | b9f54fca5d4c395c7028e06a0dd7ba9551b23563 (patch) | |
tree | 4b7bbf0b9bacd57024d8b9ede16b236ea7d07eca /OpenSim/Region/ClientStack | |
parent | Update calling card interface (diff) | |
download | opensim-SC_OLD-b9f54fca5d4c395c7028e06a0dd7ba9551b23563.zip opensim-SC_OLD-b9f54fca5d4c395c7028e06a0dd7ba9551b23563.tar.gz opensim-SC_OLD-b9f54fca5d4c395c7028e06a0dd7ba9551b23563.tar.bz2 opensim-SC_OLD-b9f54fca5d4c395c7028e06a0dd7ba9551b23563.tar.xz |
Allow TPing multiple people in the friends list in one go.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 478cfe6..f9e1e21 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -10501,11 +10501,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
10501 | 10501 | ||
10502 | StartLure handlerStartLure = OnStartLure; | 10502 | StartLure handlerStartLure = OnStartLure; |
10503 | if (handlerStartLure != null) | 10503 | if (handlerStartLure != null) |
10504 | handlerStartLure(startLureRequest.Info.LureType, | 10504 | { |
10505 | Utils.BytesToString( | 10505 | for (int i = 0 ; i < startLureRequest.TargetData.Length ; i++) |
10506 | startLureRequest.Info.Message), | 10506 | { |
10507 | startLureRequest.TargetData[0].TargetID, | 10507 | handlerStartLure(startLureRequest.Info.LureType, |
10508 | this); | 10508 | Utils.BytesToString( |
10509 | startLureRequest.Info.Message), | ||
10510 | startLureRequest.TargetData[i].TargetID, | ||
10511 | this); | ||
10512 | } | ||
10513 | } | ||
10509 | return true; | 10514 | return true; |
10510 | } | 10515 | } |
10511 | private bool HandleTeleportLureRequest(IClientAPI sender, Packet Pack) | 10516 | private bool HandleTeleportLureRequest(IClientAPI sender, Packet Pack) |