aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLRegionData.cs
diff options
context:
space:
mode:
authorSean Dague2008-12-08 17:06:47 +0000
committerSean Dague2008-12-08 17:06:47 +0000
commit444436db15909a91c2b1b2d4153032a13691440b (patch)
tree2c0bbf1ce425e1e07cbeda1a966c268c302ceca7 /OpenSim/Data/MySQL/MySQLRegionData.cs
parentfix an issue I found where primshapes weren't every being removed (diff)
downloadopensim-SC_OLD-444436db15909a91c2b1b2d4153032a13691440b.zip
opensim-SC_OLD-444436db15909a91c2b1b2d4153032a13691440b.tar.gz
opensim-SC_OLD-444436db15909a91c2b1b2d4153032a13691440b.tar.bz2
opensim-SC_OLD-444436db15909a91c2b1b2d4153032a13691440b.tar.xz
change a UUID cast to an actual new UUID call to be consistant with
the rest of the assignments here.
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 4dc0685..b8da7c3 100644
--- a/OpenSim/Data/MySQL/MySQLRegionData.cs
+++ b/OpenSim/Data/MySQL/MySQLRegionData.cs
@@ -1049,7 +1049,7 @@ namespace OpenSim.Data.MySQL
1049 1049
1050 newData.Name = (String) row["Name"]; 1050 newData.Name = (String) row["Name"];
1051 newData.Description = (String) row["Description"]; 1051 newData.Description = (String) row["Description"];
1052 newData.OwnerID = (UUID)(String)row["OwnerUUID"]; 1052 newData.OwnerID = new UUID((String)row["OwnerUUID"]);
1053 newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]); 1053 newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]);
1054 newData.Area = Convert.ToInt32(row["Area"]); 1054 newData.Area = Convert.ToInt32(row["Area"]);
1055 newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unimplemented 1055 newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unimplemented