only change plotY if height not 256

This commit is contained in:
Jesse Boyd 2019-04-06 03:54:27 +11:00
parent 3e3951a3e7
commit 676ef0159a
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -158,7 +158,9 @@ public class HybridPlotWorld extends ClassicPlotWorld {
if (schematic1.getClipboard().getDimensions().getY() == 256) {
SCHEM_Y = 0;
plotY = Math.min(plotY, PLOT_HEIGHT);
if (schematic3.getClipboard().getDimensions().getY() != 256) {
plotY = PLOT_HEIGHT;
}
roadY = 0;
}