Updated SQLiteLegacy/SQLiteSimulationData with the same. Is this crap still used?!?

viewer-2-initial-appearance
Diva Canto 2010-11-21 13:29:20 -08:00
parent 51343caeb5
commit af8c8197ab
1 changed files with 2 additions and 2 deletions

View File

@ -1198,7 +1198,7 @@ namespace OpenSim.Data.SQLiteLegacy
prim.TouchName = (String) row["TouchName"];
// permissions
prim.Flags = (PrimFlags)Convert.ToUInt32(row["ObjectFlags"]);
prim.CreatorID = new UUID((String) row["CreatorID"]);
prim.CreatorIdentification = (String) row["CreatorID"];
prim.OwnerID = new UUID((String) row["OwnerID"]);
prim.GroupID = new UUID((String) row["GroupID"]);
prim.LastOwnerID = new UUID((String) row["LastOwnerID"]);
@ -1531,7 +1531,7 @@ namespace OpenSim.Data.SQLiteLegacy
row["TouchName"] = prim.TouchName;
// permissions
row["ObjectFlags"] = (uint)prim.Flags;
row["CreatorID"] = prim.CreatorID.ToString();
row["CreatorID"] = prim.CreatorIdentification.ToString();
row["OwnerID"] = prim.OwnerID.ToString();
row["GroupID"] = prim.GroupID.ToString();
row["LastOwnerID"] = prim.LastOwnerID.ToString();