diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2024-09-21 19:34:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-21 19:34:31 +0200 |
commit | 386aea03ee2e1421f2c6b14c694db182ff15ee0f (patch) | |
tree | 9e2a1358d42b0fa4792b22cdb6ad430cf1e9cb9f /src/common/Collision/DynamicTree.cpp | |
parent | 0ba59c0053ce06da8d1a7d32c2d8b6b12c1461a5 (diff) |
chore(Core/Misc): Some cleanup (#19970)
* remove weird blanks
* update if
* ) ) to ))
* missed some ) )
* now switch
* .
Diffstat (limited to 'src/common/Collision/DynamicTree.cpp')
-rw-r--r-- | src/common/Collision/DynamicTree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Collision/DynamicTree.cpp b/src/common/Collision/DynamicTree.cpp index aef80fa914..4fcfc55b49 100644 --- a/src/common/Collision/DynamicTree.cpp +++ b/src/common/Collision/DynamicTree.cpp @@ -279,7 +279,7 @@ bool DynamicMapTree::isInLineOfSight(float x1, float y1, float z1, float x2, flo float maxDist = (v2 - v1).magnitude(); - if (!G3D::fuzzyGt(maxDist, 0) ) + if (!G3D::fuzzyGt(maxDist, 0)) { return true; } |