Examples of TileEntityThruster


Examples of micdoodle8.mods.galacticraft.core.tile.TileEntityThruster

    @Override
    public void onBlockAdded(World par1World, int x, int y, int z)
    {
        int metadata = par1World.getBlockMetadata(x, y, z);
        TileEntityThruster tile = (TileEntityThruster) par1World.getTileEntity(x, y, z);

        if (metadata == 0)
        {
            if (BlockSpinThruster.isBlockSolidOnSide(par1World, x - 1, y, z, ForgeDirection.EAST, true))
            {
View Full Code Here

Examples of micdoodle8.mods.galacticraft.core.tile.TileEntityThruster

    }

    @Override
    public TileEntity createNewTileEntity(World world, int meta)
    {
        return new TileEntityThruster();
    }
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.