Removed pointless code

This commit is contained in:
joshiejack 2014-01-19 02:04:35 +00:00
parent 43fda5138e
commit c14e5be86e

View file

@ -25,13 +25,11 @@ public class NEIAlchemyRecipeHandler extends TemplateRecipeHandler {
}
ArrayList<BloodOrbs> orbs;
AlchemyRecipe recipe;
PositionedStack output;
List<PositionedStack> inputs;
int lp;
public CachedAlchemyRecipe(AlchemyRecipe recipe) {
this.recipe = recipe;
List<PositionedStack> inputs = new ArrayList<PositionedStack>();
ItemStack[] stacks = recipe.getRecipe();
if(stacks.length > 0)
@ -125,11 +123,6 @@ public class NEIAlchemyRecipeHandler extends TemplateRecipeHandler {
return "Alchemic Chemistry Set";
}
@Override
public String getOverlayIdentifier() {
return "bmalchemy";
}
@Override
public String getGuiTexture() {
return new ResourceLocation("alchemicalwizardry", "gui/nei/alchemy.png").toString();