Fix some bugs with schematics

This commit is contained in:
Logan Darklock
2019-09-03 08:35:16 -07:00
parent 1413bd2f05
commit 991283182c
10 changed files with 128 additions and 29 deletions

View File

@@ -522,7 +522,7 @@ public final class BuilderProcess extends BaritoneProcessHelper implements IBuil
int blockX = x + origin.getX();
int blockY = y + origin.getY();
int blockZ = z + origin.getZ();
IBlockState current = bcc.bsi.get0(x, y, z);
IBlockState current = bcc.bsi.get0(blockX, blockY, blockZ);
if (!schematic.inSchematic(x, y, z, current)) {
continue;
}