Examples of EnumEnclosedBlock


Examples of micdoodle8.mods.galacticraft.core.blocks.BlockEnclosed.EnumEnclosedBlock

    @Override
    public boolean onItemUse(ItemStack itemstack, EntityPlayer entityplayer, World world, int i, int j, int k, int side, float par8, float par9, float par10)
    {
        int metadata = this.getMetadata(itemstack.getItemDamage());
        EnumEnclosedBlock type = BlockEnclosed.getTypeFromMeta(metadata);

        if (type != null && type.getPipeClass() != null)
        {
            Block block = world.getBlock(i, j, k);

            if (block == Blocks.snow)
            {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.