Package tconstruct.mechworks.entity.item

Examples of tconstruct.mechworks.entity.item.EntityLandmineFirework


        EnumFacing facing = getFacing(par1World, par2, par3, par4);

        for (int i = 0; i < par5ItemStack.stackSize; i++)
        {
            // TODO entity registration and stuffs
            EntityLandmineFirework entityfireworkrocket = new EntityLandmineFirework(par1World, (double) par2, (double) par3, (double) par4, par5ItemStack, facing.ordinal()).setRider(i == 0 ? triggerer : null);
            par1World.spawnEntityInWorld(entityfireworkrocket);

            boolean shouldRun = true;
            if (triggerer instanceof EntityPlayer)
            {
View Full Code Here

TOP

Related Classes of tconstruct.mechworks.entity.item.EntityLandmineFirework

Copyright © 2018 www.massapicom. 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.