This commit is contained in:
modmuss50 2016-03-07 19:06:11 +00:00
commit cebef75338
2 changed files with 2 additions and 2 deletions

View file

@ -270,6 +270,7 @@ public class ModRecipes {
CraftingHelper.addShapelessOreRecipe(ItemStandaloneCables.getCableByName("insulatedhv"), ItemParts.getPartByName("rubber"), ItemStandaloneCables.getCableByName("hv")); CraftingHelper.addShapelessOreRecipe(ItemStandaloneCables.getCableByName("insulatedhv"), ItemParts.getPartByName("rubber"), ItemStandaloneCables.getCableByName("hv"));
} }
private static void addCompressorRecipes() { private static void addCompressorRecipes() {
RecipeHandler.addRecipe(new CompressorRecipe(new ItemStack(Items.diamond), new ItemStack(Items.coal), 400, 20)); RecipeHandler.addRecipe(new CompressorRecipe(new ItemStack(Items.diamond), new ItemStack(Items.coal), 400, 20));
} }
@ -278,7 +279,6 @@ public class ModRecipes {
RecipeHandler.addRecipe(new ExtractorRecipe(ItemParts.getPartByName("rubberSap"), ItemParts.getPartByName("rubber", 3), 400, 20)); RecipeHandler.addRecipe(new ExtractorRecipe(ItemParts.getPartByName("rubberSap"), ItemParts.getPartByName("rubber", 3), 400, 20));
RecipeHandler.addRecipe(new ExtractorRecipe(new ItemStack(ModBlocks.rubberLog), ItemParts.getPartByName("rubber"), 400, 20)); RecipeHandler.addRecipe(new ExtractorRecipe(new ItemStack(ModBlocks.rubberLog), ItemParts.getPartByName("rubber"), 400, 20));
} }
static void addIc2ReplacementReicpes(){ static void addIc2ReplacementReicpes(){
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.Grinder), CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.Grinder),
"FFF", "FFF",

View file

@ -165,7 +165,7 @@ public class TileRecycler extends TilePowerAcceptor implements IWrenchable, IInv
@Override @Override
public ItemStack getWrenchDrop(EntityPlayer entityPlayer) { public ItemStack getWrenchDrop(EntityPlayer entityPlayer) {
return new ItemStack(ModBlocks.Compressor, 1); return new ItemStack(ModBlocks.recycler, 1);
} }
public boolean isComplete() { public boolean isComplete() {