diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/InventoryItemBase.cs | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/OpenSim/Framework/InventoryItemBase.cs b/OpenSim/Framework/InventoryItemBase.cs index 29142af..fe1d306 100644 --- a/OpenSim/Framework/InventoryItemBase.cs +++ b/OpenSim/Framework/InventoryItemBase.cs | |||
@@ -67,7 +67,19 @@ namespace OpenSim.Framework | |||
67 | /// <value> | 67 | /// <value> |
68 | /// The creator of this item expressed as a UUID | 68 | /// The creator of this item expressed as a UUID |
69 | /// </value> | 69 | /// </value> |
70 | public UUID CreatorIdAsUuid { get; private set; } | 70 | public UUID CreatorIdAsUuid |
71 | { | ||
72 | get | ||
73 | { | ||
74 | UUID uuid = UUID.Zero; | ||
75 | UUID.TryParse(m_creatorId, out uuid); | ||
76 | return uuid; | ||
77 | } | ||
78 | private set | ||
79 | { | ||
80 | m_creatorId = value.ToString(); | ||
81 | } | ||
82 | } | ||
71 | 83 | ||
72 | /// <value> | 84 | /// <value> |
73 | /// The description of the inventory item (must be less than 64 characters) | 85 | /// The description of the inventory item (must be less than 64 characters) |