some changes to llMapDestination

This commit is contained in:
UbitUmarov
2025-08-12 22:26:46 +01:00
parent 42994195b0
commit 7ac111627f
6 changed files with 13 additions and 15 deletions

View File

@@ -3683,7 +3683,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
OutPacket(reply, ThrottleOutPacketType.Land);
}
public void SendScriptTeleportRequest(string objName, string simName, Vector3 pos, Vector3 lookAt)
public void SendScriptTeleportRequest(string objName, string simName, Vector3 pos, Vector3 lookAt, int options)
{
ScriptTeleportRequestPacket packet = (ScriptTeleportRequestPacket)PacketPool.Instance.GetPacket(PacketType.ScriptTeleportRequest);
@@ -3691,6 +3691,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
packet.Data.SimName = Utils.StringToBytes(simName);
packet.Data.SimPosition = pos;
packet.Data.LookAt = lookAt;
packet.Options = [ new(){Flags = (uint)options } ];
OutPacket(packet, ThrottleOutPacketType.Task);
}