aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Storage
diff options
context:
space:
mode:
authorSean Dague2007-09-22 18:41:01 +0000
committerSean Dague2007-09-22 18:41:01 +0000
commit8dda11d17e7380abb3acfd7beaadc87db759aa3e (patch)
treefa81564b67b8d08ceeb22f3ba630ed1a27e48d2d /OpenSim/Region/Storage
parentStand Alone ScriptEngine: early framework, ongoing planning (don't touch yet,... (diff)
downloadopensim-SC_OLD-8dda11d17e7380abb3acfd7beaadc87db759aa3e.zip
opensim-SC_OLD-8dda11d17e7380abb3acfd7beaadc87db759aa3e.tar.gz
opensim-SC_OLD-8dda11d17e7380abb3acfd7beaadc87db759aa3e.tar.bz2
opensim-SC_OLD-8dda11d17e7380abb3acfd7beaadc87db759aa3e.tar.xz
fix to do hollow prims correctly. Reported from
http://bug.opensecondlife.org/view.php?id=394
Diffstat (limited to 'OpenSim/Region/Storage')
-rw-r--r--OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs
index b6771c7..a0d2399 100644
--- a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs
+++ b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs
@@ -478,7 +478,7 @@ namespace OpenSim.DataStore.MonoSqlite
478 s.ProfileBegin = Convert.ToUInt16(row["ProfileBegin"]); 478 s.ProfileBegin = Convert.ToUInt16(row["ProfileBegin"]);
479 s.ProfileEnd = Convert.ToUInt16(row["ProfileEnd"]); 479 s.ProfileEnd = Convert.ToUInt16(row["ProfileEnd"]);
480 s.ProfileCurve = Convert.ToByte(row["ProfileCurve"]); 480 s.ProfileCurve = Convert.ToByte(row["ProfileCurve"]);
481 s.ProfileHollow = Convert.ToByte(row["ProfileHollow"]); 481 s.ProfileHollow = Convert.ToUInt16(row["ProfileHollow"]);
482 // text TODO: this isn't right] = but I'm not sure the right 482 // text TODO: this isn't right] = but I'm not sure the right
483 // way to specify this as a blob atm 483 // way to specify this as a blob atm
484 s.TextureEntry = (byte[])row["Texture"]; 484 s.TextureEntry = (byte[])row["Texture"];