11121314151617
* (Why is there no base class in the Bukkit API? How annoying.) */ public class BlockStateBase extends BlockStateProxy { public BlockStateBase(Block block) { super(new CraftBlockState(block)); }
108109110111112113114
if (inst != null) { return inst.newInstance(block, tileEntity); } } // All BlockState types REQUIRE a tile entity, just return the default BlockState here return new CraftBlockState(block); }