Skip to content

Commit

Permalink
Partially fixed detailing
Browse files Browse the repository at this point in the history
  • Loading branch information
bculkin2442 committed Feb 21, 2014
1 parent fa0644d commit 2b5e0e4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/tconstruct/common/TRecipes.java
Expand Up @@ -80,6 +80,7 @@
import tconstruct.library.armor.EnumArmorPart;
import tconstruct.library.client.TConstructClientRegistry;
import tconstruct.library.crafting.Detailing;
import tconstruct.library.crafting.Detailing.DetailInput;
import tconstruct.library.crafting.DryingRackRecipes;
import tconstruct.library.crafting.FluidType;
import tconstruct.library.crafting.LiquidCasting;
Expand Down Expand Up @@ -876,6 +877,14 @@ protected static void addRecipesForCraftingTable ()
new ItemStack(TRepo.strangeFood, 1, 1), new ItemStack(TRepo.strangeFood, 1, 1), new ItemStack(Items.redstone));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(TRepo.slimeChannel, 1, 0), "slimeball", "slimeball", "slimeball", "slimeball", new ItemStack(Items.redstone)));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(TRepo.slimePad, 1, 0), TRepo.slimeChannel, "slimeball"));

// Crafting Table detailing
Detailing detail = TConstruct.chiselDetailing;

for (DetailInput inp : detail.detailing) {
GameRegistry.addShapelessRecipe(new ItemStack(inp.output.getItem(), inp.outputMeta), new ItemStack(inp.input.getItem(),
inp.inputMeta), TRepo.chisel);
}
}

protected static void addRecipesForDryingRack ()
Expand Down

0 comments on commit 2b5e0e4

Please sign in to comment.