From 3121f641fadf635c2cc5158a952a9875c5172bf4 Mon Sep 17 00:00:00 2001 From: Volence <32358820+Volence@users.noreply.github.com> Date: Tue, 30 Jul 2024 11:53:51 -0400 Subject: Fix ABS recipe times for Potin and Tumbaga (#2797) Changed the melting point to fix automated rrecipe generation --- src/main/java/gtPlusPlus/core/material/ALLOY.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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, -- cgit