mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
Fix road generation for roads of even width
This commit is contained in:
parent
38a382f8e5
commit
29868bdd29
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue