aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/RegionInfo.cs')
-rw-r--r--OpenSim/Framework/RegionInfo.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs
index 6b3adcc..ce14b58 100644
--- a/OpenSim/Framework/RegionInfo.cs
+++ b/OpenSim/Framework/RegionInfo.cs
@@ -151,7 +151,7 @@ namespace OpenSim.Framework
151 public uint RegionSizeY = Constants.RegionSize; 151 public uint RegionSizeY = Constants.RegionSize;
152 public uint RegionSizeZ = Constants.RegionHeight; 152 public uint RegionSizeZ = Constants.RegionHeight;
153 153
154 private Dictionary<String, String> m_otherSettings = new Dictionary<string, string>(); 154 private Dictionary<String, String> m_extraSettings = new Dictionary<string, string>();
155 155
156 // Apparently, we're applying the same estatesettings regardless of whether it's local or remote. 156 // Apparently, we're applying the same estatesettings regardless of whether it's local or remote.
157 157
@@ -501,20 +501,20 @@ namespace OpenSim.Framework
501 m_internalEndPoint = tmpEPE; 501 m_internalEndPoint = tmpEPE;
502 } 502 }
503 503
504 public string GetOtherSetting(string key) 504 public string GetSetting(string key)
505 { 505 {
506 string val; 506 string val;
507 string keylower = key.ToLower(); 507 string keylower = key.ToLower();
508 if (m_otherSettings.TryGetValue(keylower, out val)) 508 if (m_extraSettings.TryGetValue(keylower, out val))
509 return val; 509 return val;
510 m_log.DebugFormat("[RegionInfo] Could not locate value for parameter {0}", key); 510 m_log.DebugFormat("[RegionInfo] Could not locate value for parameter {0}", key);
511 return null; 511 return null;
512 } 512 }
513 513
514 public void SetOtherSetting(string key, string value) 514 private void SetExtraSetting(string key, string value)
515 { 515 {
516 string keylower = key.ToLower(); 516 string keylower = key.ToLower();
517 m_otherSettings[keylower] = value; 517 m_extraSettings[keylower] = value;
518 } 518 }
519 519
520 private void ReadNiniConfig(IConfigSource source, string name) 520 private void ReadNiniConfig(IConfigSource source, string name)
@@ -738,7 +738,7 @@ namespace OpenSim.Framework
738 738
739 foreach (String s in allKeys) 739 foreach (String s in allKeys)
740 { 740 {
741 SetOtherSetting(s, config.GetString(s)); 741 SetExtraSetting(s, config.GetString(s));
742 } 742 }
743 } 743 }
744 744