aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-02-29 00:33:17 +0000
committerJustin Clark-Casey (justincc)2012-02-29 00:33:17 +0000
commit40c838896c18a9ee0283386cdcdc13adec5ae3d6 (patch)
tree1c7a0023688da958c801896ba3ceb764f97d1648 /OpenSim/Data/MySQL
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-40c838896c18a9ee0283386cdcdc13adec5ae3d6.zip
opensim-SC_OLD-40c838896c18a9ee0283386cdcdc13adec5ae3d6.tar.gz
opensim-SC_OLD-40c838896c18a9ee0283386cdcdc13adec5ae3d6.tar.bz2
opensim-SC_OLD-40c838896c18a9ee0283386cdcdc13adec5ae3d6.tar.xz
Use correct casing of RegionSettings.Sandbox in the various database modules.
MySQL and MSSQL have it as Sandbox, sqlite as sandbox. In various different places in every plugin the wrong casing is used... Consistency, who needs it? Or one day sqlite can change to Sandbox.
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r--OpenSim/Data/MySQL/MySQLSimulationData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLSimulationData.cs b/OpenSim/Data/MySQL/MySQLSimulationData.cs
index 7c995ad..381a514 100644
--- a/OpenSim/Data/MySQL/MySQLSimulationData.cs
+++ b/OpenSim/Data/MySQL/MySQLSimulationData.cs
@@ -1283,7 +1283,7 @@ namespace OpenSim.Data.MySQL
1283 newSettings.TerrainRaiseLimit = Convert.ToDouble(row["terrain_raise_limit"]); 1283 newSettings.TerrainRaiseLimit = Convert.ToDouble(row["terrain_raise_limit"]);
1284 newSettings.TerrainLowerLimit = Convert.ToDouble(row["terrain_lower_limit"]); 1284 newSettings.TerrainLowerLimit = Convert.ToDouble(row["terrain_lower_limit"]);
1285 newSettings.UseEstateSun = Convert.ToBoolean(row["use_estate_sun"]); 1285 newSettings.UseEstateSun = Convert.ToBoolean(row["use_estate_sun"]);
1286 newSettings.Sandbox = Convert.ToBoolean(row["sandbox"]); 1286 newSettings.Sandbox = Convert.ToBoolean(row["Sandbox"]);
1287 newSettings.SunVector = new Vector3 ( 1287 newSettings.SunVector = new Vector3 (
1288 Convert.ToSingle(row["sunvectorx"]), 1288 Convert.ToSingle(row["sunvectorx"]),
1289 Convert.ToSingle(row["sunvectory"]), 1289 Convert.ToSingle(row["sunvectory"]),