fix: account for mismatched road-schematic heights

This commit is contained in:
dordsor21 2022-10-23 11:03:29 +01:00
parent c8d356783a
commit c5f9945e37
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -298,7 +298,10 @@ public class HybridPlotWorld extends ClassicPlotWorld {
int roadSchemHeight;
if (schematic1 != null) {
roadSchemHeight = schematic1.getClipboard().getDimensions().getY();
roadSchemHeight = Math.max(
schematic1.getClipboard().getDimensions().getY(),
schematic2.getClipboard().getDimensions().getY()
);
maxSchematicHeight = Math.max(roadSchemHeight, maxSchematicHeight);
if (maxSchematicHeight == worldGenHeight) {
SCHEM_Y = getMinGenHeight();