mirror of https://github.com/cabaletta/baritone
actually fix mine under 0 height
This commit is contained in:
parent
fec8910283
commit
d8d5343065
|
@ -151,7 +151,7 @@ public enum FasterWorldScanner implements IWorldScanner {
|
|||
long chunkX = (long) pos.x << 4;
|
||||
long chunkZ = (long) pos.z << 4;
|
||||
|
||||
int playerSectionY = ctx.playerFeet().y >> 4;
|
||||
int playerSectionY = (ctx.playerFeet().y - ctx.world().getMinBuildHeight()) >> 4;
|
||||
|
||||
return collectChunkSections(lookup, chunkProvider.getChunk(pos.x, pos.z, false), chunkX, chunkZ, playerSectionY).stream();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue