fix world scanner radius
This commit is contained in:
parent
ead6edc574
commit
2d969b55ef
@ -47,13 +47,13 @@ public enum WorldScanner implements Helper {
|
||||
int playerChunkX = playerFeet().getX() >> 4;
|
||||
int playerChunkZ = playerFeet().getZ() >> 4;
|
||||
|
||||
int searchRadius = 2;
|
||||
int searchRadiusSq = 0;
|
||||
while (true) {
|
||||
boolean allUnloaded = true;
|
||||
for (int xoff = -searchRadius; xoff <= searchRadius; xoff++) {
|
||||
for (int zoff = -searchRadius; zoff <= searchRadius; zoff++) {
|
||||
for (int xoff = -searchRadiusSq; xoff <= searchRadiusSq; xoff++) {
|
||||
for (int zoff = -searchRadiusSq; zoff <= searchRadiusSq; zoff++) {
|
||||
int distance = xoff * xoff + zoff * zoff;
|
||||
if (distance != searchRadius) {
|
||||
if (distance != searchRadiusSq) {
|
||||
continue;
|
||||
}
|
||||
int chunkX = xoff + playerChunkX;
|
||||
@ -91,10 +91,10 @@ public enum WorldScanner implements Helper {
|
||||
if (allUnloaded) {
|
||||
return res;
|
||||
}
|
||||
if (res.size() >= max) {
|
||||
if (res.size() >= max && searchRadiusSq < 26) {
|
||||
return res;
|
||||
}
|
||||
searchRadius++;
|
||||
searchRadiusSq++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,4 @@
|
||||
package baritone.utils.interfaces;
|
||||
|
||||
public class IGoalRenderPos {
|
||||
}
|
Loading…
Reference in New Issue
Block a user