From 95889e1a35d9efa1b03cf75f5b3e6f525547741f Mon Sep 17 00:00:00 2001 From: Ima Mechanique Date: Sat, 13 Jul 2013 13:51:25 +0100 Subject: [PATCH] Fixing return value that I missed during style fix. --- trunk/SecondLife/vector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/SecondLife/vector.cs b/trunk/SecondLife/vector.cs index c7264af..9003ba3 100644 --- a/trunk/SecondLife/vector.cs +++ b/trunk/SecondLife/vector.cs @@ -232,7 +232,7 @@ namespace LSLEditor } else if (Math.Abs(v1.z - v2.z) > EqualityTolerence) { bResult = false; } - return true; + return bResult; } public static bool operator !=(vector v1, vector v2)