diff options
author | MW | 2008-11-05 17:45:56 +0000 |
---|---|---|
committer | MW | 2008-11-05 17:45:56 +0000 |
commit | 079469b3f5e6b8a8b20115312d0bfd89841b3338 (patch) | |
tree | 2c70b2cbe4a6699d9867d93a55145675d39efb6a /OpenSim/Framework | |
parent | Moved most of the configuration fields from Opensimbase to their own Class...... (diff) | |
download | opensim-SC-079469b3f5e6b8a8b20115312d0bfd89841b3338.zip opensim-SC-079469b3f5e6b8a8b20115312d0bfd89841b3338.tar.gz opensim-SC-079469b3f5e6b8a8b20115312d0bfd89841b3338.tar.bz2 opensim-SC-079469b3f5e6b8a8b20115312d0bfd89841b3338.tar.xz |
more startup/initialisation refactoring
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/ConfigSettings.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/ConfigSettings.cs b/OpenSim/Framework/ConfigSettings.cs index 3671b06..7efc778 100644 --- a/OpenSim/Framework/ConfigSettings.cs +++ b/OpenSim/Framework/ConfigSettings.cs | |||
@@ -21,12 +21,12 @@ namespace OpenSim.Framework | |||
21 | set { m_meshEngineName = value; } | 21 | set { m_meshEngineName = value; } |
22 | } | 22 | } |
23 | 23 | ||
24 | private bool m_sandbox; | 24 | private bool m_standalone; |
25 | 25 | ||
26 | public bool Sandbox | 26 | public bool Standalone |
27 | { | 27 | { |
28 | get { return m_sandbox; } | 28 | get { return m_standalone; } |
29 | set { m_sandbox = value; } | 29 | set { m_standalone = value; } |
30 | } | 30 | } |
31 | 31 | ||
32 | private bool m_see_into_region_from_neighbor; | 32 | private bool m_see_into_region_from_neighbor; |