Package buildcraft.api.fuels

Examples of buildcraft.api.fuels.ISolidCoolant


    if (stack != null) {
      FluidStack liquid = FluidContainerRegistry.getFluidForFilledItem(stack);
      if (liquid == null && heat > MIN_HEAT * 2) {
        final ItemStack stackOne = stack.copy();
        stackOne.stackSize = 1;
        ISolidCoolant coolant = BuildcraftFuelRegistry.coolant.getSolidCoolant(StackKey.stack(stackOne));
        if (coolant != null) {
          liquid = coolant.getFluidFromSolidCoolant(stackOne);
        }
      }

      if (liquid != null) {
        if (fill(ForgeDirection.UNKNOWN, liquid, false) == liquid.amount) {
View Full Code Here

TOP

Related Classes of buildcraft.api.fuels.ISolidCoolant

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.