[Bleeding] Implement Metadata framework for Entities, Blocks, and Worlds

By: rmichela <deltahat@gmail.com>
This commit is contained in:
CraftBukkit/Spigot
2011-12-08 00:33:59 -05:00
parent c5912a199f
commit 8b7d5cf8e1
12 changed files with 305 additions and 2 deletions

View File

@@ -35,6 +35,10 @@ public class CraftChunk implements Chunk {
return worldServer.getWorld();
}
public CraftWorld getCraftWorld() {
return (CraftWorld) getWorld();
}
public net.minecraft.server.Chunk getHandle() {
net.minecraft.server.Chunk c = weakChunk.get();
if (c == null) {