Increased Gas Tank's output by a factor of 16 - it now can emit 256 units of gas per tick. This should help counter the secondary energy changes.

This commit is contained in:
Aidan C. Brady 2014-08-30 19:29:29 -04:00 committed by Ben Spiers
parent 83d9ecaf23
commit c512d72b06

View file

@ -32,7 +32,7 @@ public class TileEntityGasTank extends TileEntityContainerBlock implements IGasH
public static final int MAX_GAS = 96000;
/** How fast this tank can output gas. */
public int output = 16;
public int output = 256;
public boolean dumping;