This commit is contained in:
Jesse Boyd 2019-07-30 07:48:19 +10:00
parent cdb9abc117
commit accc62c10b
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
2 changed files with 7 additions and 7 deletions

View File

@ -28,12 +28,12 @@ public class CharFilterBlock extends ChunkFilterBlock {
}
@Override
public final ChunkFilterBlock init(final int x, final int z, final IChunkGet chunk) {
public final ChunkFilterBlock init(final int chunkX, final int chunkZ, final IChunkGet chunk) {
this.get = (CharGetBlocks) chunk;
this.X = x;
this.Z = z;
this.xx = x << 4;
this.zz = z << 4;
this.X = chunkX;
this.Z = chunkZ;
this.xx = chunkX << 4;
this.zz = chunkZ << 4;
return this;
}

View File

@ -73,8 +73,8 @@ public interface IDelegateChunk<U extends IChunk> extends IChunk {
}
@Override
default void init(final IQueueExtent extent, final int x, final int z) {
getParent().init(extent, x, z);
default void init(final IQueueExtent extent, final int chunkX, final int chunkZ) {
getParent().init(extent, chunkX, chunkZ);
}
@Override