diff options
author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-06-02 16:22:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-02 17:22:31 +0200 |
commit | c79156fbd7be45785c4829debfa152888a7eb8b0 (patch) | |
tree | e0f3550f6684271afe77b306168104112a46b075 /src/main/java/gtPlusPlus/core/item | |
parent | 8bde03f5330693cfb1c04c256af87f57ac86ca18 (diff) | |
download | GT5-Unofficial-c79156fbd7be45785c4829debfa152888a7eb8b0.tar.gz GT5-Unofficial-c79156fbd7be45785c4829debfa152888a7eb8b0.tar.bz2 GT5-Unofficial-c79156fbd7be45785c4829debfa152888a7eb8b0.zip |
Fixed Indalloy Recipe Time (#199)
- Manually added the ABS recipe to Indalloy, instead of the auto-generated one, since the previous one has a higher recipe time than indended when CoreMod is loaded.
Diffstat (limited to 'src/main/java/gtPlusPlus/core/item')
-rw-r--r-- | src/main/java/gtPlusPlus/core/item/ModItems.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/core/item/ModItems.java b/src/main/java/gtPlusPlus/core/item/ModItems.java index 170ff05ccc..6820c8ddac 100644 --- a/src/main/java/gtPlusPlus/core/item/ModItems.java +++ b/src/main/java/gtPlusPlus/core/item/ModItems.java @@ -638,7 +638,7 @@ public final class ModItems { MaterialGenerator.generate(ALLOY.BABBIT_ALLOY, false); MaterialGenerator.generate(ALLOY.BLACK_TITANIUM, false); - MaterialGenerator.generate(ALLOY.INDALLOY_140, false); + MaterialGenerator.generate(ALLOY.INDALLOY_140, false, false); // High Level Bioplastic MaterialGenerator.generate(ELEMENT.STANDALONE.RHUGNOR, false, false); |