Implemented Chunk.getWorld()
This commit is contained in:
@@ -52,7 +52,7 @@ public class CraftWorld implements World {
|
||||
Chunk chunk = chunkCache.get(loc);
|
||||
|
||||
if (chunk == null) {
|
||||
chunk = new CraftChunk(x, z);
|
||||
chunk = new CraftChunk(this, x, z);
|
||||
chunkCache.put(loc, chunk);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user