[Bleeding] Implementation of the brewing stand.

This commit is contained in:
Erik Broes
2012-01-17 17:08:54 +01:00
parent 387d7319bc
commit edbb7358fc
3 changed files with 257 additions and 0 deletions

View File

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