Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.diamondLogic.betterbreedingredux.init;
- import net.minecraft.item.ItemStack;
- import net.minecraftforge.fml.common.registry.GameRegistry;
- public class Recipes
- {
- public static void init()
- {
- // Add recipes here
- GameRegistry.addRecipe(new ItemStack(Items.butcher_block), "AAA", "BBB", 'A', "plankWood", 'B', "stickWood");
- GameRegistry.addRecipe(new ItemStack(Blocks.butcher_table), "A", "B", 'A', Items.butcher_block, 'B', Blocks.crafting_table);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement