diff options
author | Teravus Ovares | 2009-07-25 15:49:10 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-07-25 15:49:10 +0000 |
commit | 64bd9a335444379ebe1cad8e34d5b5953a76f671 (patch) | |
tree | 66b9ce07dbf95e4c118e3d639068e2c44fc52f58 /OpenSim/Data/MySQL | |
parent | * Apply http://opensimulator.org/mantis/view.php?id=3586 (diff) | |
download | opensim-SC_OLD-64bd9a335444379ebe1cad8e34d5b5953a76f671.zip opensim-SC_OLD-64bd9a335444379ebe1cad8e34d5b5953a76f671.tar.gz opensim-SC_OLD-64bd9a335444379ebe1cad8e34d5b5953a76f671.tar.bz2 opensim-SC_OLD-64bd9a335444379ebe1cad8e34d5b5953a76f671.tar.xz |
* Updates libOMV to version 0.7.0
* Uses mantis #3811 as a base (thanks jhuliman) with changes.
* E-mail regarding interface changes sent to the opensim-dev list
* Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLRegionData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLRegionData.cs b/OpenSim/Data/MySQL/MySQLRegionData.cs index fafba16..09564de 100644 --- a/OpenSim/Data/MySQL/MySQLRegionData.cs +++ b/OpenSim/Data/MySQL/MySQLRegionData.cs | |||
@@ -1073,13 +1073,13 @@ namespace OpenSim.Data.MySQL | |||
1073 | newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]); | 1073 | newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]); |
1074 | newData.Area = Convert.ToInt32(row["Area"]); | 1074 | newData.Area = Convert.ToInt32(row["Area"]); |
1075 | newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unimplemented | 1075 | newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unimplemented |
1076 | newData.Category = (Parcel.ParcelCategory) Convert.ToInt32(row["Category"]); | 1076 | newData.Category = (ParcelCategory) Convert.ToInt32(row["Category"]); |
1077 | //Enum libsecondlife.Parcel.ParcelCategory | 1077 | //Enum libsecondlife.Parcel.ParcelCategory |
1078 | newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]); | 1078 | newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]); |
1079 | newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]); | 1079 | newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]); |
1080 | newData.GroupID = new UUID((String) row["GroupUUID"]); | 1080 | newData.GroupID = new UUID((String) row["GroupUUID"]); |
1081 | newData.SalePrice = Convert.ToInt32(row["SalePrice"]); | 1081 | newData.SalePrice = Convert.ToInt32(row["SalePrice"]); |
1082 | newData.Status = (Parcel.ParcelStatus) Convert.ToInt32(row["LandStatus"]); | 1082 | newData.Status = (ParcelStatus) Convert.ToInt32(row["LandStatus"]); |
1083 | //Enum. libsecondlife.Parcel.ParcelStatus | 1083 | //Enum. libsecondlife.Parcel.ParcelStatus |
1084 | newData.Flags = Convert.ToUInt32(row["LandFlags"]); | 1084 | newData.Flags = Convert.ToUInt32(row["LandFlags"]); |
1085 | newData.LandingType = Convert.ToByte(row["LandingType"]); | 1085 | newData.LandingType = Convert.ToByte(row["LandingType"]); |