From 1372f2224306b23163a84e0e9f7d18ca41b1e7e7 Mon Sep 17 00:00:00 2001 From: trinsdar <30245301+Trinsdar@users.noreply.github.com> Date: Tue, 24 Oct 2023 22:53:37 -0400 Subject: [PATCH] fixed electric blast furnace not accepting some recipes it should be accepting --- .../blockentity/multi/BlockEntityElectricBlastFurnace.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/muramasa/gregtech/blockentity/multi/BlockEntityElectricBlastFurnace.java b/common/src/main/java/muramasa/gregtech/blockentity/multi/BlockEntityElectricBlastFurnace.java index f50b20cde..6c153d02e 100644 --- a/common/src/main/java/muramasa/gregtech/blockentity/multi/BlockEntityElectricBlastFurnace.java +++ b/common/src/main/java/muramasa/gregtech/blockentity/multi/BlockEntityElectricBlastFurnace.java @@ -53,7 +53,7 @@ public long getPower() { @Override protected boolean validateRecipe(IRecipe r) { - return super.validateRecipe(r) && coilData != null && coilData.heat() > r.getSpecialValue(); + return super.validateRecipe(r) && coilData != null && coilData.heat() >= r.getSpecialValue(); } }); }