Further non-standard selection fixes as per #393

- Fix incorrect usage of initChunk (it's run in the right place now)
 - Fix poorly implemented //sel sphere "improvements"
This commit is contained in:
dordsor21
2020-04-19 19:46:41 +01:00
parent b52fc46f19
commit 330fc39dde
3 changed files with 125 additions and 110 deletions

View File

@ -148,7 +148,7 @@ public interface IQueueExtent<T extends IChunk> extends Flushable, Trimable, ICh
if (newChunk != null) {
chunk = newChunk;
if (block == null) {
block = this.initFilterBlock().initChunk(chunkX, chunkZ);
block = this.initFilterBlock();
}
chunk.filterBlocks(filter, block, region, full);
}