Examples of outputLiquid()


Examples of mods.railcraft.common.fluids.TankManager.outputLiquid()

        }

        if (getPatternPositionY() - getPattern().getMasterOffsetY() == 0) {
            TankManager tMan = getTankManager();
            if (tMan != null)
                tMan.outputLiquid(tileCache, FLUID_OUTPUT_FILTER, FLUID_OUTPUTS, 0, FLOW_RATE);
        }
    }

    @Override
    public IIcon getIcon(int side) {
View Full Code Here

Examples of mods.railcraft.common.fluids.TankManager.outputLiquid()

            }
        }

        TankManager tMan = getTankManager();
        if (tMan != null)
            tMan.outputLiquid(getOutputs(), 0, WATER_OUTPUT);
    }

    private IFluidHandler getOutputOnSide(ForgeDirection side) {
        TileEntity tile = tileCache.getTileOnSide(side);
        if (tile instanceof TileBoilerFirebox)
View Full Code Here

Examples of mods.railcraft.common.fluids.TankManager.outputLiquid()

                    FluidHelper.processContainers(tankManager.get(0), this, SLOT_INPUT, SLOT_OUTPUT);
            }

            TankManager tMan = getTankManager();
            if (tMan != null)
                tMan.outputLiquid(tileCache, LIQUID_OUTPUT_FILTER, LIQUID_OUTPUTS, 0, OUTPUT_RATE);
        }
    }

    @Override
    public boolean openGui(EntityPlayer player) {
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.