diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/Scene.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 168080f..ca32940 100755 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -67,8 +67,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
67 | 67 | ||
68 | #region Fields | 68 | #region Fields |
69 | 69 | ||
70 | public bool EmergencyMonitoring = false; | ||
71 | |||
72 | /// <summary> | 70 | /// <summary> |
73 | /// Show debug information about animations. | 71 | /// Show debug information about animations. |
74 | /// </summary> | 72 | /// </summary> |
@@ -4606,7 +4604,8 @@ Label_GroupsDone: | |||
4606 | } | 4604 | } |
4607 | 4605 | ||
4608 | // TODO: This check should probably be in QueryAccess(). | 4606 | // TODO: This check should probably be in QueryAccess(). |
4609 | ILandObject nearestParcel = GetNearestAllowedParcel(cAgentData.AgentID, RegionInfo.RegionSizeX / 2, RegionInfo.RegionSizeY / 2); | 4607 | ILandObject nearestParcel = GetNearestAllowedParcel(cAgentData.AgentID, |
4608 | (float)RegionInfo.RegionSizeX * 0.5f, (float)RegionInfo.RegionSizeY * 0.5f); | ||
4610 | if (nearestParcel == null) | 4609 | if (nearestParcel == null) |
4611 | { | 4610 | { |
4612 | m_log.InfoFormat( | 4611 | m_log.InfoFormat( |