make a xengine test happier

This commit is contained in:
UbitUmarov
2022-08-20 19:17:33 +01:00
parent 3a201f7e3d
commit 20c12e195b
3 changed files with 5 additions and 4 deletions

View File

@@ -1864,11 +1864,11 @@ namespace OpenSim.Region.ScriptEngine.Shared
public static bool operator ==(key k1, key k2)
{
return k1.value == k2.value;
return k1.value.Equals(k2.value);
}
public static bool operator !=(key k1, key k2)
{
return k1.value != k2.value;
return !k1.value.Equals(k2.value);
}
#endregion