mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 11:40:41 +00:00
only change plotY if height not 256
This commit is contained in:
parent
3e3951a3e7
commit
676ef0159a
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue