change a UUID cast to an actual new UUID call to be consistant with

the rest of the assignments here.
0.6.1-post-fixes
Sean Dague 2008-12-08 17:06:47 +00:00
parent a260466147
commit 444436db15
1 changed files with 1 additions and 1 deletions

View File

@ -1049,7 +1049,7 @@ namespace OpenSim.Data.MySQL
newData.Name = (String) row["Name"];
newData.Description = (String) row["Description"];
newData.OwnerID = (UUID)(String)row["OwnerUUID"];
newData.OwnerID = new UUID((String)row["OwnerUUID"]);
newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]);
newData.Area = Convert.ToInt32(row["Area"]);
newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unimplemented