Fix missed case in CraftBlock

This commit is contained in:
Thinkofdeath 2014-11-29 00:14:46 +00:00
parent 69e66a69c4
commit 923b375d8e

View File

@ -276,6 +276,7 @@ public class CraftBlock implements Block {
return new CraftBeacon(this); return new CraftBeacon(this);
case BANNER: case BANNER:
case WALL_BANNER: case WALL_BANNER:
case STANDING_BANNER:
return new CraftBanner(this); return new CraftBanner(this);
default: default:
return new CraftBlockState(this); return new CraftBlockState(this);