diff options
author | Volence <32358820+Volence@users.noreply.github.com> | 2024-07-30 11:53:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 22:53:51 +0700 |
commit | 3121f641fadf635c2cc5158a952a9875c5172bf4 (patch) | |
tree | 258c84b6979fff53a9cbd6b1c35f420f3d266234 /src | |
parent | 5381b5e737d753dd33933333fb2d4da2a84d2a7d (diff) | |
download | GT5-Unofficial-3121f641fadf635c2cc5158a952a9875c5172bf4.tar.gz GT5-Unofficial-3121f641fadf635c2cc5158a952a9875c5172bf4.tar.bz2 GT5-Unofficial-3121f641fadf635c2cc5158a952a9875c5172bf4.zip |
Fix ABS recipe times for Potin and Tumbaga (#2797)
Changed the melting point to fix automated rrecipe generation
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gtPlusPlus/core/material/ALLOY.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/core/material/ALLOY.java b/src/main/java/gtPlusPlus/core/material/ALLOY.java index 6618c61dd3..1ee963fb97 100644 --- a/src/main/java/gtPlusPlus/core/material/ALLOY.java +++ b/src/main/java/gtPlusPlus/core/material/ALLOY.java @@ -90,7 +90,7 @@ public final class ALLOY { "Tumbaga", // Material Name MaterialState.SOLID, // State new short[] { 255, 178, 15, 0 }, // Material Colour - -1, + 1300, -1, -1, -1, @@ -103,7 +103,7 @@ public final class ALLOY { "Potin", // Material Name MaterialState.SOLID, // State new short[] { 201, 151, 129, 0 }, // Material Colour - -1, + 1300, -1, -1, -1, |