* Small bugfix comparing equal UUIDs

Sugilite
Adam Frisby 2007-06-29 22:10:55 +00:00
parent e4df6ea08e
commit b8b701fabb
1 changed files with 2 additions and 2 deletions

View File

@ -108,12 +108,12 @@ namespace OpenSim.Framework.Types
public static bool operator ==(UUID a, UUID b)
{
return a.Equals(b);
return a.llUUID.Equals(b.GetLLUUID());
}
public static bool operator !=(UUID a, UUID b)
{
return !a.Equals(b);
return !a.llUUID.Equals(b.GetLLUUID());
}
public static bool operator ==(UUID a, LLUUID b)