"Fixed" tp

This commit is contained in:
mcrcortex
2024-02-20 10:28:45 +10:00
parent 10327c2908
commit e778fce6d6

View File

@@ -82,8 +82,9 @@ public class DistanceTracker {
if (ring!=null)
ring.update(x, z);
}
for (var ring : this.loDRings) {
ring.update(x, z);
//Update in reverse order (biggest lod to smallest lod)
for (int i = this.loDRings.length-1; -1<i; i-- ) {
this.loDRings[i].update(x, z);
}
for (var ring : this.cacheUnloadRings) {
if (ring!=null)