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:
parent
1ba5665e07
commit
98ca2315e2
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ public class TileEntityGasTank extends TileEntityContainerBlock implements IGasH
|
||||||
public static final int MAX_GAS = 96000;
|
public static final int MAX_GAS = 96000;
|
||||||
|
|
||||||
/** How fast this tank can output gas. */
|
/** How fast this tank can output gas. */
|
||||||
public int output = 16;
|
public int output = 256;
|
||||||
|
|
||||||
public boolean dumping;
|
public boolean dumping;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue