From 8ebd5b409ac85a3370b02c302efb4d24562b0f6e Mon Sep 17 00:00:00 2001 From: MW Date: Mon, 2 Mar 2009 18:04:00 +0000 Subject: Renamed OpenSimBase m_autoCreateLindenStack to m_autoCreateClientStack --- OpenSim/Region/Application/OpenSimBase.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim') diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 10f75c1..7569502 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs @@ -66,7 +66,7 @@ namespace OpenSim protected string proxyUrl; protected int proxyOffset = 0; - protected bool m_autoCreateLindenStack = true; + protected bool m_autoCreateClientStack = true; /// /// The file used to load and save prim backup xml if no filename has been specified @@ -585,7 +585,7 @@ namespace OpenSim m_sceneManager.Add(scene); - if (m_autoCreateLindenStack) + if (m_autoCreateClientStack) { m_clientServers.Add(clientServer); clientServer.Start(); @@ -662,7 +662,7 @@ namespace OpenSim uint port = (uint)regionInfo.InternalEndPoint.Port; - if (m_autoCreateLindenStack) + if (m_autoCreateClientStack) { clientServer = m_clientStackManager.CreateServer( @@ -678,7 +678,7 @@ namespace OpenSim Scene scene = CreateScene(regionInfo, m_storageManager, circuitManager); - if (m_autoCreateLindenStack) + if (m_autoCreateClientStack) { clientServer.AddScene(scene); } -- cgit v1.1