I made a block called Mixer. I tried to make a recipe where you need items that the mod also add but when I put the items in crafting table in the right order nothing happens. Here the code of the recipe:
ItemStack stackRB = new ItemStack(Blocks.redstone_block);
ItemStack stackt = new ItemStack(this.tryptonidCry);
ItemStack stackib = new ItemStack(Blocks.iron_block);
ItemStack stackb = new ItemStack(this.brantinIngot);
ItemStack stackOp = new ItemStack(this.mixEl);
GameRegistry.addShapedRecipe(stackOp, "ibi", "rtr", "ibi", 'i', stackib, 'b', stackb, 't', stackt, 'r', stackRB);
Whats the probleme?!