From 723e1a740a4a3d27d8961a8d5f18f49911c4c537 Mon Sep 17 00:00:00 2001 From: LewisSaber <39595617+LewisSaber@users.noreply.github.com> Date: Sat, 25 Feb 2023 22:20:11 +0200 Subject: Fix plates in cutting machine being listed as output 2 instead of 1 (#556) * Add circuit + update bs * Change 1-> 3 for consistency * POOOF! gone * Fix plate cutting --- src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java') 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 3de61a949f..bfc4e1fe94 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java @@ -102,8 +102,8 @@ public class RecipeGen_Plates extends RecipeGen_Base { if (ItemUtils.checkForInvalidItems(block) && ItemUtils.checkForInvalidItems(plate_Single)) if (GT_Values.RA.addCutterRecipe( block, - null, plate_SingleNine, + null, (int) Math.max(material.getMass() * 10L, 1L), material.vVoltageMultiplier)) { Logger.WARNING("Cutting Machine Recipe: " + material.getLocalizedName() + " - Success"); -- cgit