diff options
author | Maxim <maxim235@gmx.de> | 2022-11-03 22:13:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-03 22:13:48 +0100 |
commit | fa0fec058c3ad09b188d9c0b24a5b93ff8e0a696 (patch) | |
tree | 3e9996a7b5f5f13c6d16252fd9f4540cacec1708 /src | |
parent | 973c7c450512224722cebbd62c817bfb96bc3784 (diff) | |
download | GT5-Unofficial-fa0fec058c3ad09b188d9c0b24a5b93ff8e0a696.tar.gz GT5-Unofficial-fa0fec058c3ad09b188d9c0b24a5b93ff8e0a696.tar.bz2 GT5-Unofficial-fa0fec058c3ad09b188d9c0b24a5b93ff8e0a696.zip |
High tier cable diodes (#231)
Former-commit-id: 35907ef7039f9fa03e0ef0a8e2b328ec321bfbe8
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java index f6bef99113..d2ba8f2d59 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java @@ -637,7 +637,7 @@ public class RecipeLoader { ItemList.Machine_LV_ChemicalReactor.get(1L), }); - for (int i = 0; i < GT_Values.VN.length - 1; i++) { + for (int i = 0; i < 9; i++) { try { Materials cable = cables[i]; ItemStack hull = hulls[i] instanceof Materials |