mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-08-24 06:45:35 +02:00
fix: correct height that FAWE ends up using for schematics
- this did not end up having an impact on P2 code as it always used getMinBuildHeight when PASTE_ON_TOP was false anyway - there should not be any side effects to this as any uses this specific SCHEM_Y value are effectively normalised against it
This commit is contained in:
@@ -274,7 +274,7 @@ public class HybridPlotWorld extends ClassicPlotWorld {
|
||||
SCHEM_Y = getMinGenHeight();
|
||||
plotY = 0;
|
||||
} else if (!Settings.Schematics.PASTE_ON_TOP) {
|
||||
SCHEM_Y = getMinGenHeight();
|
||||
SCHEM_Y = getMinBuildHeight();
|
||||
plotY = 0;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user