diff options
author | Sean Dague | 2008-12-08 17:06:47 +0000 |
---|---|---|
committer | Sean Dague | 2008-12-08 17:06:47 +0000 |
commit | 444436db15909a91c2b1b2d4153032a13691440b (patch) | |
tree | 2c0bbf1ce425e1e07cbeda1a966c268c302ceca7 | |
parent | fix an issue I found where primshapes weren't every being removed (diff) | |
download | opensim-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.
-rw-r--r-- | OpenSim/Data/MySQL/MySQLRegionData.cs | 2 |
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 |