mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
fix: ensure all setBlock methods in BlockArrayCacheScopedQueueCoordinator apply the correct offset
- Fixes #3783
This commit is contained in:
parent
49b19e0eaf
commit
a58581751e
@ -116,7 +116,7 @@ public class BlockArrayCacheScopedQueueCoordinator extends ScopedQueueCoordinato
|
|||||||
x += offsetX;
|
x += offsetX;
|
||||||
z += offsetZ;
|
z += offsetZ;
|
||||||
if (x >= scopeMinX && x < scopeMaxX && y >= minY && y <= maxY && z >= scopeMinZ && z < scopeMaxZ) {
|
if (x >= scopeMinX && x < scopeMaxX && y >= minY && y <= maxY && z >= scopeMinZ && z < scopeMaxZ) {
|
||||||
blockStates[y - minY][x][z] = id.toImmutableState();
|
blockStates[y - minY][x - scopeMinX][z - scopeMinZ] = id.toImmutableState();
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user