add missing file. Also in last commit comment the flag was relative to (un)freeze no t(un)eject
parent
74524cb3be
commit
1a7c8893ee
|
@ -1642,6 +1642,20 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
SendTerseUpdateToAllClients();
|
||||
}
|
||||
|
||||
public void TeleportOnEject(Vector3 pos)
|
||||
{
|
||||
if (ParentID != (uint)0)
|
||||
StandUp();
|
||||
|
||||
bool isFlying = Flying;
|
||||
RemoveFromPhysicalScene();
|
||||
|
||||
AbsolutePosition = pos;
|
||||
|
||||
AddToPhysicalScene(isFlying);
|
||||
SendTerseUpdateToAllClients();
|
||||
}
|
||||
|
||||
public void avnLocalTeleport(Vector3 newpos, Vector3? newvel, bool rotateToVelXY)
|
||||
{
|
||||
if(!CheckLocalTPLandingPoint(ref newpos))
|
||||
|
|
Loading…
Reference in New Issue