Package pneumaticCraft.common.entity.projectile

Examples of pneumaticCraft.common.entity.projectile.EntityPotionCloud


    }

    @Override
    public void executeFullGrownEffect(World world, int x, int y, int z, Random rand){
        world.setBlockMetadataWithNotify(x, y, z, world.getBlockMetadata(x, y, z) - 2, 3);
        if(!world.isRemote) world.spawnEntityInWorld(new EntityPotionCloud(world, x + 0.5D, y + 0.5D, z + 0.5D));
    }
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.entity.projectile.EntityPotionCloud

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.