From a73cfc50672b20bece82db0e20546cce47548db5 Mon Sep 17 00:00:00 2001 From: Alkalus Date: Thu, 5 Oct 2017 20:30:57 +1000 Subject: + Added a custom recipe handler for the Advanced Combiner. + Added a Combined recipe for the HG-1223 Super Conductor. % Slight tweak to material generator. --- src/Java/gregtech/api/util/Recipe_GT.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Java/gregtech/api/util') diff --git a/src/Java/gregtech/api/util/Recipe_GT.java b/src/Java/gregtech/api/util/Recipe_GT.java index a8ce381907..b63a259f9c 100644 --- a/src/Java/gregtech/api/util/Recipe_GT.java +++ b/src/Java/gregtech/api/util/Recipe_GT.java @@ -265,6 +265,10 @@ public class Recipe_GT extends GT_Recipe{ //Cyclotron recipe map public static final GT_Recipe_Map sCyclotronRecipes = new GT_Recipe_Map(new HashSet(200), "gt.recipe.cyclotron", "COMET - Compact Cyclotron", null, RES_PATH_GUI + "basicmachines/BlastSmelter", 1, 1, 1, 0, 1, E, 1, E, true, true); + //Advanced Mixer + public static final GT_Recipe_Map sAdvancedMixerRecipes = new GT_Recipe_Map(new HashSet(1000), "gt.recipe.advanced.mixer", + "Advanced Material Combiner", null, "gregtech:textures/gui/basicmachines/MixerAdvanced", 4, 4, 1, 0, 2, "", 1, "", true, true); + /** * HashMap of Recipes based on their Items -- cgit