aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/MSSQLRegionData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLRegionData.cs')
-rw-r--r--OpenSim/Data/MSSQL/MSSQLRegionData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLRegionData.cs b/OpenSim/Data/MSSQL/MSSQLRegionData.cs
index 5a0eda8..0fe8de7 100644
--- a/OpenSim/Data/MSSQL/MSSQLRegionData.cs
+++ b/OpenSim/Data/MSSQL/MSSQLRegionData.cs
@@ -875,13 +875,13 @@ VALUES
875 newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]); 875 newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]);
876 newData.Area = Convert.ToInt32(row["Area"]); 876 newData.Area = Convert.ToInt32(row["Area"]);
877 newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unemplemented 877 newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unemplemented
878 newData.Category = (Parcel.ParcelCategory)Convert.ToInt32(row["Category"]); 878 newData.Category = (ParcelCategory)Convert.ToInt32(row["Category"]);
879 //Enum libsecondlife.Parcel.ParcelCategory 879 //Enum libsecondlife.Parcel.ParcelCategory
880 newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]); 880 newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]);
881 newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]); 881 newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]);
882 newData.GroupID = new UUID((Guid)row["GroupUUID"]); 882 newData.GroupID = new UUID((Guid)row["GroupUUID"]);
883 newData.SalePrice = Convert.ToInt32(row["SalePrice"]); 883 newData.SalePrice = Convert.ToInt32(row["SalePrice"]);
884 newData.Status = (Parcel.ParcelStatus)Convert.ToInt32(row["LandStatus"]); 884 newData.Status = (ParcelStatus)Convert.ToInt32(row["LandStatus"]);
885 //Enum. libsecondlife.Parcel.ParcelStatus 885 //Enum. libsecondlife.Parcel.ParcelStatus
886 newData.Flags = Convert.ToUInt32(row["LandFlags"]); 886 newData.Flags = Convert.ToUInt32(row["LandFlags"]);
887 newData.LandingType = Convert.ToByte(row["LandingType"]); 887 newData.LandingType = Convert.ToByte(row["LandingType"]);