Package thaumic.tinkerer.common.block

Examples of thaumic.tinkerer.common.block.BlockGas


      for (int x = xs - 3; x < xs + 3; x++)
        for (int y = ys - 3; y < ys + 3; y++)
          for (int z = zs - 3; z < zs + 3; z++) {
            Block block = par2World.getBlock(x, y, z);
            if (block != null && block instanceof BlockGas) {
              BlockGas gas = (BlockGas) block;
              gas.placeParticle(par2World, x, y, z);
              par2World.setBlock(x, y, z, Blocks.air, 0, 1 | 2);
            }
          }

      par2World.playSoundAtEntity(par3EntityPlayer, "thaumcraft.wand", 0.2F, 1F);
View Full Code Here

TOP

Related Classes of thaumic.tinkerer.common.block.BlockGas

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.