mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
Improve the opening test in CompleteMovement, to account for multiple flags besides ViaLogin.
This commit is contained in:
@@ -1350,7 +1350,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
"[SCENE PRESENCE]: Completing movement of {0} into region {1} in position {2}",
|
||||
client.Name, Scene.RegionInfo.RegionName, AbsolutePosition);
|
||||
|
||||
if (m_teleportFlags != TeleportFlags.ViaLogin)
|
||||
if ((m_teleportFlags & TeleportFlags.ViaLogin) != 0)
|
||||
// Let's wait until UpdateAgent (called by departing region) is done
|
||||
if (!WaitForUpdateAgent(client))
|
||||
// The sending region never sent the UpdateAgent data, we have to refuse
|
||||
|
||||
Reference in New Issue
Block a user