Merge branch '1.16.5' of gitlab.com:jeseibel/minecraft-lod-mod into 1.16.5

This commit is contained in:
James Seibel
2021-08-14 09:34:01 -05:00
@@ -334,7 +334,11 @@ public class LodQuadTree
*/
public void deleteChildren()
{
children = new LodQuadTree[2][2];
for (int NS = 0; NS <= 1; NS++) {
for (int WE = 0; WE <= 1; WE++) {
children[NS][WE] = null;
}
}
}
/**