mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-04 12:06:41 +00:00
Fix compile
This commit is contained in:
@ -741,7 +741,7 @@ public class CuboidRegion extends AbstractRegion implements FlatRegion {
|
||||
int indexY, index;
|
||||
for (int layer = 0; layer < FaweCache.IMP.CHUNK_LAYERS; layer++) {
|
||||
if (set.hasSection(layer)) {
|
||||
char[] arr = set.getArray(layer);
|
||||
char[] arr = set.load(layer);
|
||||
if (trimX || trimZ) {
|
||||
indexY = 0;
|
||||
for (int y = 0; y < 16; y++, indexY += 256) {
|
||||
|
@ -294,7 +294,7 @@ public interface Region extends Iterable<BlockVector3>, Cloneable, IBatchProcess
|
||||
} else {
|
||||
boolean changed = true;
|
||||
processExtra = true;
|
||||
char[] arr = set.getArray(layer);
|
||||
char[] arr = set.load(layer);
|
||||
for (int y = 0, index = 0; y < 16; y++) {
|
||||
for (int z = 0; z < 16; z++) {
|
||||
for (int x = 0; x < 16; x++, index++) {
|
||||
|
Reference in New Issue
Block a user