Implemented Chunk.getWorld()

This commit is contained in:
Dinnerbone
2011-01-04 14:17:05 +00:00
parent 8680ee387f
commit a2c944d3c0
2 changed files with 14 additions and 2 deletions

View File

@@ -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);
}