Fix for setting generator output when ethylene already in tank when placed

This commit is contained in:
Brian Lewis 2015-02-18 13:59:18 -06:00
parent dcf7d7772a
commit d41fec6031

View file

@ -312,6 +312,12 @@ public class TileEntityGasGenerator extends TileEntityGenerator implements IGasH
if(itemStack.stackTagCompound.hasKey("fuelTank"))
{
fuelTank.read(itemStack.stackTagCompound.getCompoundTag("fuelTank"));
// update energy output based on any existing fuel in tank
FuelGas fuel = FuelHandler.getFuel(fuelTank.getGas().getGas());
if (fuel != null) {
output = fuel.energyPerTick * 2;
}
}
}
}