diff options
author | LewisSaber <39595617+LewisSaber@users.noreply.github.com> | 2023-03-12 16:56:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-12 15:56:52 +0100 |
commit | fd7028d437cc22ca2fc27b87623c4b88f7c50812 (patch) | |
tree | 9a789c261203ee200b0a2324a32a5bd2be406d46 | |
parent | 2775a8bd3277c4bc96cf44147511feeaa362dbd4 (diff) | |
download | GT5-Unofficial-fd7028d437cc22ca2fc27b87623c4b88f7c50812.tar.gz GT5-Unofficial-fd7028d437cc22ca2fc27b87623c4b88f7c50812.tar.bz2 GT5-Unofficial-fd7028d437cc22ca2fc27b87623c4b88f7c50812.zip |
Fix Bender Making Double Plate instead of Dense one (#566)
Fixes https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/12874
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |