Examples of FuelGas


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
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.