Fix road generation for roads of even width

This commit is contained in:
dordsor21 2019-01-01 14:43:41 +00:00
parent 38a382f8e5
commit 29868bdd29

View File

@ -243,7 +243,7 @@ public class HybridPlotWorld extends ClassicPlotWorld {
addOverlayBlock((short) (x - shift), (short) (y + startY),
(short) (z + shift + oddshift), id, false, h1);
addOverlayBlock((short) (z + shift + oddshift), (short) (y + startY),
(short) (shift - x), id, true, h1);
(short) (shift - x + (oddshift - 1)), id, true, h1);
}
}
}