Package mekanism.common.FuelHandler

Examples of mekanism.common.FuelHandler.FuelGas


          burnTicks--;
          setEnergy(electricityStored + generationRate);
        }
        else if(fuelTank.getStored() > 0)
        {
          FuelGas fuel = FuelHandler.getFuel(fuelTank.getGas().getGas());
         
          if(fuel != null)
          {
            burnTicks = fuel.burnTicks - 1;
            generationRate = fuel.energyPerTick;
View Full Code Here

TOP

Related Classes of mekanism.common.FuelHandler.FuelGas

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.