Implement Skull BlockState. Adds BUKKIT-3259

This commit is contained in:
meiskam
2012-12-21 18:44:56 -05:00
committed by feildmaster
parent 39e2af7bd1
commit fdb4b2d911
3 changed files with 203 additions and 0 deletions

View File

@@ -255,6 +255,8 @@ public class CraftBlock implements Block {
return new CraftJukebox(this);
case BREWING_STAND:
return new CraftBrewingStand(this);
case SKULL:
return new CraftSkull(this);
default:
return new CraftBlockState(this);
}