BlockState for Command Blocks. Adds BUKKIT-3805.

This commit is contained in:
Nate Mortensen
2013-03-18 00:32:11 -06:00
parent e639690e45
commit dc19d3788f
3 changed files with 51 additions and 1 deletions

View File

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