Fix selection box aabbs

(cherry picked from commit e682fc75a6)
This commit is contained in:
ZacSharp
2024-08-09 13:54:29 +02:00
parent db96a5a3ec
commit 8ac57c8da3

View File

@@ -37,7 +37,7 @@ public class Selection implements ISelection {
max.z - min.z + 1
);
this.aabb = new AABB(this.min);
this.aabb = new AABB(min.x, min.y, min.z, max.x + 1, max.y + 1, max.z + 1);
}
@Override