diff --git a/src/main/java/techreborn/init/ModRecipes.java b/src/main/java/techreborn/init/ModRecipes.java index 634cf16da..46b4d85be 100644 --- a/src/main/java/techreborn/init/ModRecipes.java +++ b/src/main/java/techreborn/init/ModRecipes.java @@ -3,6 +3,7 @@ package techreborn.init; import com.google.common.base.Predicate; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; +import mezz.jei.plugins.vanilla.crafting.ShapedOreRecipeHandler; import net.minecraft.block.Block; import net.minecraft.init.Blocks; import net.minecraft.init.Items; @@ -3264,9 +3265,6 @@ public class ModRecipes ItemCells.getCellByName("empty"), ItemDusts.getDustByName("aluminum", 2), ItemCells.getCellByName("empty", 5), null, null, 100, 60)); - RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemCells.getCellByName("nitrogenDioxide", 3), null, - ItemCells.getCellByName("nitrogen", 1), ItemCells.getCellByName("empty", 5), null, - ItemCells.getCellByName("empty"), 160, 60)); RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemCells.getCellByName("sodiumSulfide", 2), null, ItemCells.getCellByName("sodium", 1), ItemDusts.getDustByName("sulfur", 1), null, diff --git a/src/main/java/techreborn/items/EmptyCell.java b/src/main/java/techreborn/items/EmptyCell.java index 1c320c6bc..68691cb26 100644 --- a/src/main/java/techreborn/items/EmptyCell.java +++ b/src/main/java/techreborn/items/EmptyCell.java @@ -10,6 +10,7 @@ public class EmptyCell extends ItemTextureBase { public EmptyCell() { + super(); setUnlocalizedName("techreborn.cell"); setCreativeTab(TechRebornCreativeTab.instance); } @@ -20,6 +21,6 @@ public class EmptyCell extends ItemTextureBase { @Override public int getMaxMeta() { - return 0; + return 1; } }