diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 86db865..99584da 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -532,18 +532,18 @@ namespace OpenSim | |||
532 | // and has to happen before the region is registered with the grid. | 532 | // and has to happen before the region is registered with the grid. |
533 | scene.CreateTerrainTexture(false); | 533 | scene.CreateTerrainTexture(false); |
534 | 534 | ||
535 | //try | 535 | try |
536 | //{ | 536 | { |
537 | scene.RegisterRegionWithGrid(); | 537 | scene.RegisterRegionWithGrid(); |
538 | //} | 538 | } |
539 | //catch (Exception e) | 539 | catch (Exception e) |
540 | //{ | 540 | { |
541 | // m_log.ErrorFormat("[STARTUP]: Registration of region with grid failed, aborting startup - {0}", e); | 541 | m_log.ErrorFormat("[STARTUP]: Registration of region with grid failed, aborting startup - {0}", e); |
542 | 542 | ||
543 | // Carrying on now causes a lot of confusion down the | 543 | // Carrying on now causes a lot of confusion down the |
544 | // line - we need to get the user's attention | 544 | // line - we need to get the user's attention |
545 | // System.Environment.Exit(1); | 545 | System.Environment.Exit(1); |
546 | //} | 546 | } |
547 | 547 | ||
548 | // We need to do this after we've initialized the | 548 | // We need to do this after we've initialized the |
549 | // scripting engines. | 549 | // scripting engines. |