diff options
-rw-r--r-- | OpenSim/Framework/InventoryItemBase.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/InventoryItemBase.cs b/OpenSim/Framework/InventoryItemBase.cs index fe1d306..b544790 100644 --- a/OpenSim/Framework/InventoryItemBase.cs +++ b/OpenSim/Framework/InventoryItemBase.cs | |||
@@ -71,16 +71,16 @@ namespace OpenSim.Framework | |||
71 | { | 71 | { |
72 | get | 72 | get |
73 | { | 73 | { |
74 | UUID uuid = UUID.Zero; | 74 | return m_creatorIdAsUuid; |
75 | UUID.TryParse(m_creatorId, out uuid); | ||
76 | return uuid; | ||
77 | } | 75 | } |
78 | private set | 76 | private set |
79 | { | 77 | { |
80 | m_creatorId = value.ToString(); | 78 | m_creatorIdAsUuid = value; |
81 | } | 79 | } |
82 | } | 80 | } |
83 | 81 | ||
82 | private UUID m_creatorIdAsUuid = UUID.Zero; | ||
83 | |||
84 | /// <value> | 84 | /// <value> |
85 | /// 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) |
86 | /// </value> | 86 | /// </value> |