Implement Hopper block state and inventory methods. Adds BUKKIT-3749

This commit is contained in:
Michael Limiero
2013-03-16 00:46:35 -04:00
committed by Travis Watkins
parent 6f68fc4ba4
commit d802168cd5
4 changed files with 47 additions and 1 deletions

View File

@@ -249,6 +249,8 @@ public class CraftBlock implements Block {
return new CraftFurnace(this);
case DISPENSER:
return new CraftDispenser(this);
case HOPPER:
return new CraftHopper(this);
case MOB_SPAWNER:
return new CraftCreatureSpawner(this);
case NOTE_BLOCK: