mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 19:36:07 +08:00
Fix the AsUuid thingy
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user