From 6c3d4537f1f98d66f09436a9fae99a7b4644ecf5 Mon Sep 17 00:00:00 2001 From: Glease <4586901+Glease@users.noreply.github.com> Date: Mon, 7 Nov 2022 23:09:55 +0800 Subject: remove compat with IC2 fuel can (#1506) * remove compat with IC2 fuel can * Spotless apply for branch feature/remove-ic2-fuel-can for #1506 (#1507) Co-authored-by: Glease <4586901+Glease@users.noreply.github.com> Co-authored-by: GitHub GTNH Actions <> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../java/gregtech/loaders/oreprocessing/ProcessingSand.java | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'src/main/java/gregtech/loaders/oreprocessing') diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingSand.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingSand.java index f9e55088ee..53887e2788 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingSand.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingSand.java @@ -16,18 +16,7 @@ public class ProcessingSand implements gregtech.api.interfaces.IOreRecipeRegistr @Override public void registerOre( OrePrefixes aPrefix, Materials aMaterial, String aOreDictName, String aModName, ItemStack aStack) { - if (aOreDictName.equals("sandCracked")) { - GT_Values.RA.addCentrifugeRecipe( - GT_Utility.copyAmount(16L, aStack), - -1, - gregtech.api.util.GT_ModHandler.getFuelCan(25000), - GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Saltpeter, 8L), - null, - null, - null, - new ItemStack(Blocks.sand, 10), - 2500); - } else if (aOreDictName.equals("sandOil")) { + if (aOreDictName.equals("sandOil")) { GT_Values.RA.addCentrifugeRecipe( GT_Utility.copyAmount(2L, aStack), 1, -- cgit