From 3cd8cc1a0708a40ca6fb3f34bf29e5799b8b0455 Mon Sep 17 00:00:00 2001 From: halotroop2288 Date: Sat, 29 Feb 2020 20:28:09 -0800 Subject: [PATCH] You commited without an import @Valoeghese --- src/main/java/com/github/halotroop/litecraft/world/Chunk.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/github/halotroop/litecraft/world/Chunk.java b/src/main/java/com/github/halotroop/litecraft/world/Chunk.java index 82df46a..630b1b9 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/Chunk.java +++ b/src/main/java/com/github/halotroop/litecraft/world/Chunk.java @@ -33,7 +33,6 @@ public class Chunk implements BlockAccess, WorldGenConstants, SODSerializable private boolean fullyGenerated = false; public final int dimension; private boolean dirty = true; - private World world; private BlockInstance[] renderedBlocks = new BlockInstance[CHUNK_SIZE * CHUNK_SIZE * CHUNK_SIZE]; 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.chunkStartZ = chunkZ << POS_SHIFT; this.dimension = dimension; - this.world = world; } public boolean doRender()