diff options
| author | Foghrye4 <foghrye4@gmail.com> | 2017-02-07 20:16:24 +0300 |
|---|---|---|
| committer | Foghrye4 <foghrye4@gmail.com> | 2017-02-07 20:16:24 +0300 |
| commit | 2636ccdd67b5f33421ab7f9152021bc4ebc147b3 (patch) | |
| tree | bae55386c0a830ac74eeb5cd09ed7fa27ecc90dc /ihl/explosion/ExplosionVectorBlockV2.java | |
| parent | 2db8e30b1d2151fdde5d08a6c06aef55f0c397d2 (diff) | |
Fixed an ore dictionary recipes of Iron workbench which using wrong set of items. Fixed wire recipe input. All recipes of Iron workbench now use fluid container input and will drop an empty container.
Diffstat (limited to 'ihl/explosion/ExplosionVectorBlockV2.java')
| -rw-r--r-- | ihl/explosion/ExplosionVectorBlockV2.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ihl/explosion/ExplosionVectorBlockV2.java b/ihl/explosion/ExplosionVectorBlockV2.java index 5d94609..4ccf638 100644 --- a/ihl/explosion/ExplosionVectorBlockV2.java +++ b/ihl/explosion/ExplosionVectorBlockV2.java @@ -30,7 +30,7 @@ public class ExplosionVectorBlockV2 {
public int[] startVectors = new int[1];
private final int[][] directionMasks = new int[8][3];
- private final int bits = 8;
+ private final int bits = IHLMod.config.explosionVectorSizeBits;
private final int maxValue = (1<<bits)-1;
private final int maxArraySize = (1<<bits*3)-1;
public final int[][] vectors = new int[maxArraySize][2];
|
