aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders
diff options
context:
space:
mode:
authorchochem <40274384+chochem@users.noreply.github.com>2023-04-30 16:12:27 +0100
committerGitHub <noreply@github.com>2023-04-30 17:12:27 +0200
commit9e146246d2a4f42af94c114fffd88ddc2612754f (patch)
tree32ae0aeee69e5757e2d630d0e147eb3ba4018afb /src/main/java/gregtech/loaders
parent5192502fe5beeeca0fc6100106b58ab725651b36 (diff)
downloadGT5-Unofficial-9e146246d2a4f42af94c114fffd88ddc2612754f.tar.gz
GT5-Unofficial-9e146246d2a4f42af94c114fffd88ddc2612754f.tar.bz2
GT5-Unofficial-9e146246d2a4f42af94c114fffd88ddc2612754f.zip
remove unnecessary NC-cells (#1938)
Diffstat (limited to 'src/main/java/gregtech/loaders')
-rw-r--r--src/main/java/gregtech/loaders/postload/recipes/ElectrolyzerRecipes.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/ElectrolyzerRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/ElectrolyzerRecipes.java
index e8da2986c2..98f6707bad 100644
--- a/src/main/java/gregtech/loaders/postload/recipes/ElectrolyzerRecipes.java
+++ b/src/main/java/gregtech/loaders/postload/recipes/ElectrolyzerRecipes.java
@@ -81,7 +81,7 @@ public class ElectrolyzerRecipes implements Runnable {
.addTo(sElectrolyzerRecipes);
GT_Values.RA.stdBuilder()
- .itemInputs(GT_OreDictUnificator.get(OrePrefixes.cell, Materials.Water, 1L), ItemList.Cell_Empty.get(0))
+ .itemInputs(GT_OreDictUnificator.get(OrePrefixes.cell, Materials.Water, 1L))
.itemOutputs(GT_ModHandler.getIC2Item("electrolyzedWaterCell", 1L))
.noFluidInputs()
.noFluidOutputs()
@@ -90,7 +90,7 @@ public class ElectrolyzerRecipes implements Runnable {
.addTo(sElectrolyzerRecipes);
GT_Values.RA.stdBuilder()
- .itemInputs(ItemList.Dye_Bonemeal.get(3L), ItemList.Cell_Empty.get(0))
+ .itemInputs(ItemList.Dye_Bonemeal.get(3L))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Calcium, 1L))
.noFluidInputs()
.noFluidOutputs()
@@ -99,7 +99,7 @@ public class ElectrolyzerRecipes implements Runnable {
.addTo(sElectrolyzerRecipes);
GT_Values.RA.stdBuilder()
- .itemInputs(new ItemStack(Blocks.sand, 8, 0), ItemList.Cell_Empty.get(0))
+ .itemInputs(new ItemStack(Blocks.sand, 8, 0))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.SiliconDioxide, 3L))
.noFluidInputs()
.noFluidOutputs()
@@ -108,7 +108,7 @@ public class ElectrolyzerRecipes implements Runnable {
.addTo(sElectrolyzerRecipes);
GT_Values.RA.stdBuilder()
- .itemInputs(new ItemStack(Blocks.sand, 8, 1), ItemList.Cell_Empty.get(0))
+ .itemInputs(new ItemStack(Blocks.sand, 8, 1))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.SiliconDioxide, 3L))
.noFluidInputs()
.noFluidOutputs()
@@ -117,7 +117,7 @@ public class ElectrolyzerRecipes implements Runnable {
.addTo(sElectrolyzerRecipes);
GT_Values.RA.stdBuilder()
- .itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Graphite, 1), ItemList.Cell_Empty.get(0))
+ .itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Graphite, 1))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Carbon, 4))
.noFluidInputs()
.noFluidOutputs()