From b4b5e9077704a4e7d8619e7cd0d527af0c828a72 Mon Sep 17 00:00:00 2001 From: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> Date: Thu, 9 Feb 2023 07:17:17 +0000 Subject: Fix immature alk code (#535) * Remove immature code * Remove even more immature code * spotlessApply (#536) Co-authored-by: GitHub GTNH Actions <> --------- Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java index 58f8d3e349..b072f7ee21 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java @@ -63,8 +63,8 @@ public class RecipeGen_BlastSmelter extends RecipeGen_Base { final boolean doTest = true; tMaterial = M.getComposites(); - // This Bad boy here is what dictates unique recipes. Fuck life, right? - ItemStack circuitGT = ItemUtils.getGregtechCircuit(0); + // This Bad boy here is what dictates unique recipes. + ItemStack circuitGT; // Set a duration - OLD /* @@ -103,7 +103,7 @@ public class RecipeGen_BlastSmelter extends RecipeGen_Base { Logger.WARNING("[BAS] Size: " + mMaterialListSize); - // Make a simple one Material Materialstack[] and log it for validity. + // Make a simple one Material MaterialStack[] and log it for validity. circuitGT = ItemUtils.getGregtechCircuit(1); final ItemStack[] tItemStackTest = new ItemStack[] { circuitGT, tStack }; inputStackCount = 1; -- cgit