aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLRegionData.cs
diff options
context:
space:
mode:
authorHomer Horwitz2008-11-08 20:04:28 +0000
committerHomer Horwitz2008-11-08 20:04:28 +0000
commit344b725d3bcf84ab2e18103e84bd85a43536d80a (patch)
treeff549ea456eafde893eaa32605cbffd8a89ffa39 /OpenSim/Data/MySQL/MySQLRegionData.cs
parentMantis #2553: Thank you, idb, for a fix that helps to persist changes in prim... (diff)
downloadopensim-SC_OLD-344b725d3bcf84ab2e18103e84bd85a43536d80a.zip
opensim-SC_OLD-344b725d3bcf84ab2e18103e84bd85a43536d80a.tar.gz
opensim-SC_OLD-344b725d3bcf84ab2e18103e84bd85a43536d80a.tar.bz2
opensim-SC_OLD-344b725d3bcf84ab2e18103e84bd85a43536d80a.tar.xz
Mantis#2598: Thanks Fly-Man- for a patch that fixes a client-thread crash by
allowing landFlags bit 31 to be used (Int32 -> UInt32).
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLRegionData.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLRegionData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLRegionData.cs b/OpenSim/Data/MySQL/MySQLRegionData.cs
index ac8165c..27bfec8 100644
--- a/OpenSim/Data/MySQL/MySQLRegionData.cs
+++ b/OpenSim/Data/MySQL/MySQLRegionData.cs
@@ -999,7 +999,7 @@ namespace OpenSim.Data.MySQL
999 createCol(land, "GroupUUID", typeof (String)); 999 createCol(land, "GroupUUID", typeof (String));
1000 createCol(land, "SalePrice", typeof (Int32)); 1000 createCol(land, "SalePrice", typeof (Int32));
1001 createCol(land, "LandStatus", typeof (Int32)); //Enum. libsecondlife.Parcel.ParcelStatus 1001 createCol(land, "LandStatus", typeof (Int32)); //Enum. libsecondlife.Parcel.ParcelStatus
1002 createCol(land, "LandFlags", typeof (Int32)); 1002 createCol(land, "LandFlags", typeof (UInt32));
1003 createCol(land, "LandingType", typeof (Int32)); 1003 createCol(land, "LandingType", typeof (Int32));
1004 createCol(land, "MediaAutoScale", typeof (Int32)); 1004 createCol(land, "MediaAutoScale", typeof (Int32));
1005 createCol(land, "MediaTextureUUID", typeof (String)); 1005 createCol(land, "MediaTextureUUID", typeof (String));