From 92b8261907b3800d4468c1dc546eccc4e158c224 Mon Sep 17 00:00:00 2001 From: Alkalus Date: Tue, 26 May 2020 17:34:28 +0100 Subject: + Added new Machine casings to the Chemical Plant code. % Changed colours of the two new alloys. --- src/Java/gtPlusPlus/core/material/ALLOY.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/core') diff --git a/src/Java/gtPlusPlus/core/material/ALLOY.java b/src/Java/gtPlusPlus/core/material/ALLOY.java index 4428dffbeb..22ffc34205 100644 --- a/src/Java/gtPlusPlus/core/material/ALLOY.java +++ b/src/Java/gtPlusPlus/core/material/ALLOY.java @@ -818,7 +818,7 @@ public final class ALLOY { public static final Material LAURENIUM = new Material( "Laurenium", //Material Name MaterialState.SOLID, //State - null, //Material Colour + new short[] {244, 168, 255, 0}, //Material Colour 6825, //Melting Point in C 11355, //Boiling Point in C -1, @@ -838,7 +838,7 @@ public final class ALLOY { public static final Material BOTMIUM = new Material( "Botmium", //Material Name MaterialState.SOLID, //State - null, //Material Colour + new short[] {80, 160, 80, 0}, //Material Colour 8220, //Melting Point in C 10540, //Boiling Point in C -1, -- cgit