diff --git a/src/main/java/com/drmangotea/tfmg/recipes/jei/ChemicalVatCategory.java b/src/main/java/com/drmangotea/tfmg/recipes/jei/ChemicalVatCategory.java index f9e35473..f71eedbd 100644 --- a/src/main/java/com/drmangotea/tfmg/recipes/jei/ChemicalVatCategory.java +++ b/src/main/java/com/drmangotea/tfmg/recipes/jei/ChemicalVatCategory.java @@ -7,6 +7,7 @@ import com.drmangotea.tfmg.registry.TFMGGuiTextures; import com.mojang.blaze3d.vertex.PoseStack; import com.simibubi.create.compat.jei.category.CreateRecipeCategory; import com.simibubi.create.compat.jei.category.sequencedAssembly.SequencedAssemblySubCategory; +import com.simibubi.create.content.processing.recipe.HeatCondition; import com.simibubi.create.content.processing.sequenced.SequencedRecipe; import com.simibubi.create.foundation.gui.AllGuiTextures; import mezz.jei.api.gui.builder.IRecipeLayoutBuilder; @@ -109,6 +110,9 @@ public class ChemicalVatCategory extends CreateRecipeCategory TFMGGuiTextures.GRAPHITE_ELECTRODE.render(graphics, 55 - 4 + 32, 32); TFMGGuiTextures.GRAPHITE_ELECTRODE.render(graphics, 55 - 4, 32); } + if (recipe.getRequiredHeat() == HeatCondition.HEATED){ + TFMGGuiTextures.VAT_HEATER.render(graphics, 55 - 10, 109); + } int pos = 55; int width = ((recipe.getFluidIngredients().size()) * 21) / 2; for (int i = 0; i < recipe.getFluidIngredients().size(); i++) { diff --git a/src/main/java/com/drmangotea/tfmg/registry/TFMGGuiTextures.java b/src/main/java/com/drmangotea/tfmg/registry/TFMGGuiTextures.java index d17244b9..52f7d08d 100644 --- a/src/main/java/com/drmangotea/tfmg/registry/TFMGGuiTextures.java +++ b/src/main/java/com/drmangotea/tfmg/registry/TFMGGuiTextures.java @@ -30,6 +30,7 @@ public enum TFMGGuiTextures implements ScreenElement { ELECTRODE("chemical_vat", 189, 0, 8, 29), GRAPHITE_ELECTRODE("chemical_vat", 176, 0, 8, 29), FIREPROOF_BRICK_OVERLAY("chemical_vat", 0, 84, 96, 72), + VAT_HEATER("chemical_vat", 112, 44, 20, 14), ; diff --git a/src/main/resources/assets/tfmg/textures/gui/chemical_vat.png b/src/main/resources/assets/tfmg/textures/gui/chemical_vat.png index 5d0188f1..da5dbffb 100644 Binary files a/src/main/resources/assets/tfmg/textures/gui/chemical_vat.png and b/src/main/resources/assets/tfmg/textures/gui/chemical_vat.png differ