mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
Allow TPing multiple people in the friends list in one go.
This commit is contained in:
@@ -10501,11 +10501,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
|
||||
StartLure handlerStartLure = OnStartLure;
|
||||
if (handlerStartLure != null)
|
||||
handlerStartLure(startLureRequest.Info.LureType,
|
||||
Utils.BytesToString(
|
||||
startLureRequest.Info.Message),
|
||||
startLureRequest.TargetData[0].TargetID,
|
||||
this);
|
||||
{
|
||||
for (int i = 0 ; i < startLureRequest.TargetData.Length ; i++)
|
||||
{
|
||||
handlerStartLure(startLureRequest.Info.LureType,
|
||||
Utils.BytesToString(
|
||||
startLureRequest.Info.Message),
|
||||
startLureRequest.TargetData[i].TargetID,
|
||||
this);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
private bool HandleTeleportLureRequest(IClientAPI sender, Packet Pack)
|
||||
|
||||
Reference in New Issue
Block a user