mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Fixes #534
This commit is contained in:
parent
7a6f9e061d
commit
b77b550e56
@ -90,12 +90,12 @@ public class HybridPlotManager extends ClassicPlotManager {
|
||||
public void createSchemAbs(HybridPlotWorld hpw, Location pos1, Location pos2, int height, boolean clear) {
|
||||
final int size = hpw.SIZE;
|
||||
for (int x = pos1.getX(); x <= pos2.getX(); x++) {
|
||||
short absX = (short) ((x - hpw.ROAD_OFFSET_X) & (size - 1));
|
||||
short absX = (short) ((x - hpw.ROAD_OFFSET_X) % (size));
|
||||
if (absX < 0) {
|
||||
absX += size;
|
||||
}
|
||||
for (int z = pos1.getZ(); z <= pos2.getZ(); z++) {
|
||||
short absZ = (short) ((z - hpw.ROAD_OFFSET_Z) & (size - 1));
|
||||
short absZ = (short) ((z - hpw.ROAD_OFFSET_Z) % (size));
|
||||
if (absZ < 0) {
|
||||
absZ += size;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user