mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
only change plotY if height not 256
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user