Reset DoNotClose scene presence teleport flag before pausing. Rename DoNotClose to DoNotCloseAfterTeleport

This commit is contained in:
Justin Clark-Casey (justincc)
2013-07-26 01:38:04 +01:00
parent 1fabdcc43c
commit 72ed49af5f
3 changed files with 6 additions and 4 deletions

View File

@@ -3700,7 +3700,7 @@ namespace OpenSim.Region.Framework.Scenes
}
else
{
sp.DoNotClose = true;
sp.DoNotCloseAfterTeleport = true;
}
}

View File

@@ -722,7 +722,7 @@ namespace OpenSim.Region.Framework.Scenes
/// teleport is reusing the connection.
/// </summary>
/// <remarks>May be refactored or move somewhere else soon.</remarks>
public bool DoNotClose { get; set; }
public bool DoNotCloseAfterTeleport { get; set; }
private float m_speedModifier = 1.0f;