Skip to content

Commit

Permalink
Add alternate name tag recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
mDiyo committed Dec 30, 2013
1 parent 4970f49 commit 629d64c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file modified resources/assets/tinker/textures/gui/newhearts.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/tconstruct/common/TContent.java
Expand Up @@ -1219,8 +1219,10 @@ private void addRecipesForCraftingTable ()
GameRegistry.addShapelessRecipe(new ItemStack(manualBook, 1, 2), new ItemStack(manualBook, 1, 1));
GameRegistry.addShapelessRecipe(new ItemStack(manualBook, 2, 2), new ItemStack(manualBook, 1, 2), Item.book);
GameRegistry.addShapelessRecipe(new ItemStack(manualBook, 1, 3), new ItemStack(manualBook, 1, 2));
// alternativ Vanilla Book Recipe
// alternative Vanilla Book Recipe
GameRegistry.addShapelessRecipe(new ItemStack(Item.book), Item.paper, Item.paper, Item.paper, Item.silk, blankPattern, blankPattern);
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Item.nameTag), "P~ ", "~O ", " ~", '~', Item.silk, 'P', Item.paper, 'O', "slimeball" ));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(slimeExplosive, 1, 0), "slimeball", Block.tnt));
// Paperstack Recipe
GameRegistry.addRecipe(new ItemStack(materials, 1, 0), "pp", "pp", 'p', Item.paper);
// Mossball Recipe
Expand Down

0 comments on commit 629d64c

Please sign in to comment.