mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 20:55:43 +08:00
Changed XInventoryData's CreatorID to a string.
This commit is contained in:
@@ -51,7 +51,7 @@ namespace OpenSim.Data
|
||||
public int inventoryNextPermissions;
|
||||
public int inventoryCurrentPermissions;
|
||||
public int invType;
|
||||
public UUID creatorID;
|
||||
public string creatorID;
|
||||
public int inventoryBasePermissions;
|
||||
public int inventoryEveryOnePermissions;
|
||||
public int salePrice;
|
||||
|
||||
@@ -460,7 +460,7 @@ namespace OpenSim.Services.InventoryService
|
||||
newItem.ID = item.inventoryID;
|
||||
newItem.InvType = item.invType;
|
||||
newItem.Folder = item.parentFolderID;
|
||||
newItem.CreatorId = item.creatorID.ToString();
|
||||
newItem.CreatorId = item.creatorID;
|
||||
newItem.Description = item.inventoryDescription;
|
||||
newItem.NextPermissions = (uint)item.inventoryNextPermissions;
|
||||
newItem.CurrentPermissions = (uint)item.inventoryCurrentPermissions;
|
||||
@@ -491,7 +491,7 @@ namespace OpenSim.Services.InventoryService
|
||||
newItem.inventoryID = item.ID;
|
||||
newItem.invType = item.InvType;
|
||||
newItem.parentFolderID = item.Folder;
|
||||
newItem.creatorID = item.CreatorIdAsUuid;
|
||||
newItem.creatorID = item.CreatorId;
|
||||
newItem.inventoryDescription = item.Description;
|
||||
newItem.inventoryNextPermissions = (int)item.NextPermissions;
|
||||
newItem.inventoryCurrentPermissions = (int)item.CurrentPermissions;
|
||||
|
||||
Reference in New Issue
Block a user