mirror of
https://github.com/opensim/opensim.git
synced 2026-07-02 00:15:45 +08:00
change a UUID cast to an actual new UUID call to be consistant with
the rest of the assignments here.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user