From fd7028d437cc22ca2fc27b87623c4b88f7c50812 Mon Sep 17 00:00:00 2001 From: LewisSaber <39595617+LewisSaber@users.noreply.github.com> Date: Sun, 12 Mar 2023 16:56:52 +0200 Subject: Fix Bender Making Double Plate instead of Dense one (#566) Fixes https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/12874 --- src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java index bfc4e1fe94..9cd6fedbc0 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java @@ -168,7 +168,7 @@ public class RecipeGen_Plates extends RecipeGen_Base { if (ItemUtils.checkForInvalidItems(plate_SingleNine) && ItemUtils.checkForInvalidItems(plate_Dense)) if (addBenderRecipe( plate_SingleNine, - plate_Double, + plate_Dense, (int) Math.max(material.getMass() * 2L, 1L), material.vVoltageMultiplier)) { Logger.WARNING("Bender Recipe: " + material.getLocalizedName() + " - Success"); -- cgit