From 344b725d3bcf84ab2e18103e84bd85a43536d80a Mon Sep 17 00:00:00 2001 From: Homer Horwitz Date: Sat, 8 Nov 2008 20:04:28 +0000 Subject: Mantis#2598: Thanks Fly-Man- for a patch that fixes a client-thread crash by allowing landFlags bit 31 to be used (Int32 -> UInt32). --- OpenSim/Data/MySQL/MySQLRegionData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Data/MySQL/MySQLRegionData.cs') 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 createCol(land, "GroupUUID", typeof (String)); createCol(land, "SalePrice", typeof (Int32)); createCol(land, "LandStatus", typeof (Int32)); //Enum. libsecondlife.Parcel.ParcelStatus - createCol(land, "LandFlags", typeof (Int32)); + createCol(land, "LandFlags", typeof (UInt32)); createCol(land, "LandingType", typeof (Int32)); createCol(land, "MediaAutoScale", typeof (Int32)); createCol(land, "MediaTextureUUID", typeof (String)); -- cgit v1.1