Fix the AsUuid thingy

0.6.5-rc1
Melanie Thielker 2009-05-04 21:40:19 +00:00
parent ebb8111f6c
commit 2cded6d369
1 changed files with 4 additions and 4 deletions

View File

@ -71,16 +71,16 @@ namespace OpenSim.Framework
{
get
{
UUID uuid = UUID.Zero;
UUID.TryParse(m_creatorId, out uuid);
return uuid;
return m_creatorIdAsUuid;
}
private set
{
m_creatorId = value.ToString();
m_creatorIdAsUuid = value;
}
}
private UUID m_creatorIdAsUuid = UUID.Zero;
/// <value>
/// The description of the inventory item (must be less than 64 characters)
/// </value>