mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
only change plotY if height not 256
This commit is contained in:
parent
3e3951a3e7
commit
676ef0159a
@ -158,7 +158,9 @@ public class HybridPlotWorld extends ClassicPlotWorld {
|
|||||||
|
|
||||||
if (schematic1.getClipboard().getDimensions().getY() == 256) {
|
if (schematic1.getClipboard().getDimensions().getY() == 256) {
|
||||||
SCHEM_Y = 0;
|
SCHEM_Y = 0;
|
||||||
plotY = Math.min(plotY, PLOT_HEIGHT);
|
if (schematic3.getClipboard().getDimensions().getY() != 256) {
|
||||||
|
plotY = PLOT_HEIGHT;
|
||||||
|
}
|
||||||
roadY = 0;
|
roadY = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user