mirror of
https://github.com/Relintai/godot_voxel.git
synced 2024-11-19 02:47:18 +01:00
Fix misplaced semicolon
This commit is contained in:
parent
b264b3d319
commit
9e2e59c198
@ -81,7 +81,7 @@ static Vector3 get_motion(AABB box, Vector3 motion, const Vector<AABB> &other_bo
|
||||
Vector<AABB> colliding_boxes;
|
||||
for(int i = 0; i < other_boxes.size(); ++i) {
|
||||
AABB other = other_boxes[i];
|
||||
if(expanded_box.intersects(other_boxes[i]));
|
||||
if(expanded_box.intersects(other_boxes[i]))
|
||||
colliding_boxes.push_back(other);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user