Implementation of the Jukebox BlockState

This commit is contained in:
Celtic Minstrel
2011-08-22 01:36:01 -04:00
committed by Dinnerbone
parent 6c6eef8759
commit aece687d01
2 changed files with 52 additions and 0 deletions

View File

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