Fix the AsUuid thingy
parent
ebb8111f6c
commit
2cded6d369
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue