From 15d41c2fc279f369f1f95e886ebaada94f558dcc Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Sun, 1 Jun 2008 01:34:46 +0000 Subject: * Fix build break by eliminating remaining IScenePermissions references - must remember to nant clean * Hook all server startups into base opensim server startup method --- OpenSim/Region/Application/Application.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Application/Application.cs') diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index 72fdf10..9be30e9 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs @@ -83,12 +83,12 @@ namespace OpenSim if (background) { OpenSimBase sim = new OpenSimBackground(configSource); - sim.StartUp(); + sim.Startup(); } else { OpenSimBase sim = new OpenSim(configSource); - sim.StartUp(); + sim.Startup(); while (true) { -- cgit v1.1