diff options
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index ae85605..ec1eda0 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -1213,9 +1213,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1213 | try | 1213 | try |
1214 | { | 1214 | { |
1215 | Update(); | 1215 | Update(); |
1216 | |||
1217 | m_lastUpdate = Util.EnvironmentTickCount(); | ||
1218 | m_firstHeartbeat = false; | ||
1219 | } | 1216 | } |
1220 | catch (ThreadAbortException) | 1217 | catch (ThreadAbortException) |
1221 | { | 1218 | { |
@@ -1405,6 +1402,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1405 | 1402 | ||
1406 | // Tell the watchdog that this thread is still alive | 1403 | // Tell the watchdog that this thread is still alive |
1407 | Watchdog.UpdateThread(); | 1404 | Watchdog.UpdateThread(); |
1405 | |||
1406 | m_lastUpdate = Util.EnvironmentTickCount(); | ||
1407 | m_firstHeartbeat = false; | ||
1408 | } | 1408 | } |
1409 | } | 1409 | } |
1410 | 1410 | ||