You commited without an import @Valoeghese
parent
6849bea21a
commit
3cd8cc1a07
|
@ -33,7 +33,6 @@ public class Chunk implements BlockAccess, WorldGenConstants, SODSerializable
|
||||||
private boolean fullyGenerated = false;
|
private boolean fullyGenerated = false;
|
||||||
public final int dimension;
|
public final int dimension;
|
||||||
private boolean dirty = true;
|
private boolean dirty = true;
|
||||||
private World world;
|
|
||||||
private BlockInstance[] renderedBlocks = new BlockInstance[CHUNK_SIZE * CHUNK_SIZE * CHUNK_SIZE];
|
private BlockInstance[] renderedBlocks = new BlockInstance[CHUNK_SIZE * CHUNK_SIZE * CHUNK_SIZE];
|
||||||
|
|
||||||
public Chunk(World world, int chunkX, int chunkY, int chunkZ, int dimension)
|
public Chunk(World world, int chunkX, int chunkY, int chunkZ, int dimension)
|
||||||
|
@ -45,7 +44,6 @@ public class Chunk implements BlockAccess, WorldGenConstants, SODSerializable
|
||||||
this.chunkStartY = chunkY << POS_SHIFT;
|
this.chunkStartY = chunkY << POS_SHIFT;
|
||||||
this.chunkStartZ = chunkZ << POS_SHIFT;
|
this.chunkStartZ = chunkZ << POS_SHIFT;
|
||||||
this.dimension = dimension;
|
this.dimension = dimension;
|
||||||
this.world = world;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean doRender()
|
public boolean doRender()
|
||||||
|
|
Loading…
Reference in New Issue