Advertisement
Digitalsabre

Untitled

Oct 6th, 2015
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. package com.diamondLogic.betterbreedingredux.init;
  2.  
  3. import net.minecraft.item.ItemStack;
  4. import net.minecraftforge.fml.common.registry.GameRegistry;
  5.  
  6. public class Recipes
  7. {
  8.  
  9. public static void init()
  10. {
  11. // Add recipes here
  12. GameRegistry.addRecipe(new ItemStack(Items.butcher_block), "AAA", "BBB", 'A', "plankWood", 'B', "stickWood");
  13. GameRegistry.addRecipe(new ItemStack(Blocks.butcher_table), "A", "B", 'A', Items.butcher_block, 'B', Blocks.crafting_table);
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement