mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
Updated SQLiteLegacy/SQLiteSimulationData with the same. Is this crap still used?!?
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user