mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-14 04:47:54 +00:00
whoops, wrong schematic
This commit is contained in:
parent
1c9c0d0207
commit
b1835f0998
1 changed files with 2 additions and 2 deletions
|
@ -249,11 +249,11 @@ public class HybridPlotWorld extends ClassicPlotWorld {
|
|||
}
|
||||
}
|
||||
}
|
||||
min = blockArrayClipboard2.getMinimumPoint();
|
||||
min = blockArrayClipboard1.getMinimumPoint();
|
||||
for (short x = 0; x < w2; x++) {
|
||||
for (short z = 0; z < l2; z++) {
|
||||
for (short y = 0; y < h2; y++) {
|
||||
BaseBlock id = blockArrayClipboard2.getFullBlock(BlockVector3.at(x + min.getBlockX(), y + min.getBlockY(), z + min.getBlockZ()));
|
||||
BaseBlock id = blockArrayClipboard1.getFullBlock(BlockVector3.at(x + min.getBlockX(), y + min.getBlockY(), z + min.getBlockZ()));
|
||||
if (!id.getBlockType().getMaterial().isAir()) {
|
||||
addOverlayBlock((short) (x - shift), (short) (y + startY),
|
||||
(short) (z - shift), id, false, h2);
|
||||
|
|
Loading…
Reference in a new issue