"Fixed" tp
This commit is contained in:
@@ -82,8 +82,9 @@ public class DistanceTracker {
|
|||||||
if (ring!=null)
|
if (ring!=null)
|
||||||
ring.update(x, z);
|
ring.update(x, z);
|
||||||
}
|
}
|
||||||
for (var ring : this.loDRings) {
|
//Update in reverse order (biggest lod to smallest lod)
|
||||||
ring.update(x, z);
|
for (int i = this.loDRings.length-1; -1<i; i-- ) {
|
||||||
|
this.loDRings[i].update(x, z);
|
||||||
}
|
}
|
||||||
for (var ring : this.cacheUnloadRings) {
|
for (var ring : this.cacheUnloadRings) {
|
||||||
if (ring!=null)
|
if (ring!=null)
|
||||||
|
|||||||
Reference in New Issue
Block a user