diff options
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsVector.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsVector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsVector.cs b/OpenSim/Region/Physics/Manager/PhysicsVector.cs index a916e5e..4ec943c 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsVector.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsVector.cs | |||
@@ -149,7 +149,7 @@ namespace OpenSim.Region.Physics.Manager | |||
149 | { | 149 | { |
150 | PhysicsVector diff = this - v; | 150 | PhysicsVector diff = this - v; |
151 | float d = diff.length(); | 151 | float d = diff.length(); |
152 | if (d < tolerance) | 152 | if (d <= tolerance) |
153 | return true; | 153 | return true; |
154 | 154 | ||
155 | return false; | 155 | return false; |