mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-29 04:04:43 +02:00
Fixes #459
This commit is contained in:
@ -233,7 +233,6 @@ public abstract class SchematicHandler {
|
||||
for (int ry = 0; ry < Math.min(256, HEIGHT); ry++) {
|
||||
int yy = y_offset + ry;
|
||||
if (yy > 255) {
|
||||
System.out.print("TOO HIGH: " + ry);
|
||||
continue;
|
||||
}
|
||||
int i1 = ry * WIDTH * LENGTH;
|
||||
@ -323,7 +322,6 @@ public abstract class SchematicHandler {
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
System.out.print(id +","+datas[i]);
|
||||
SetBlockQueue.setBlock(plot.world, xx, yy, zz, new PlotBlock((short) id, (byte) datas[i]));
|
||||
break;
|
||||
}
|
||||
@ -444,8 +442,6 @@ public abstract class SchematicHandler {
|
||||
// }
|
||||
// Schematic schem = new Schematic(collection, dimension, file);
|
||||
|
||||
System.out.print(width + "," + height +"," + length);
|
||||
|
||||
Dimension dimensions = new Dimension(width, height, length);
|
||||
Schematic schem = new Schematic(block, data, dimensions);
|
||||
|
||||
|
Reference in New Issue
Block a user