Skip to content

Commit

Permalink
Lava is now a smeltery fuel! Pyrothium now also is a smeltery fuel, a…
Browse files Browse the repository at this point in the history
…nd hotter at that!
  • Loading branch information
bonii-xx committed Sep 8, 2014
1 parent c09de4b commit 9a6790e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/tconstruct/smeltery/TinkerSmeltery.java
Expand Up @@ -1173,6 +1173,13 @@ protected void addRecipesForBasinCasting ()

protected static void addRecipesForSmeltery ()
{
// Smeltery fuels
Smeltery.addSmelteryFuel(FluidRegistry.LAVA, 1000, 10);
// register pyrotheum if it's present
Fluid pyrotheum = FluidRegistry.getFluid("pyrotheum");
if(pyrotheum != null)
Smeltery.addSmelteryFuel(pyrotheum, 1500, 9);

// Alloy Smelting
Smeltery.addAlloyMixing(new FluidStack(TinkerSmeltery.moltenBronzeFluid, (int) (TConstruct.nuggetLiquidValue * PHConstruct.ingotsBronzeAlloy)), new FluidStack(
TinkerSmeltery.moltenCopperFluid, TConstruct.nuggetLiquidValue * 3), new FluidStack(TinkerSmeltery.moltenTinFluid, TConstruct.nuggetLiquidValue)); // Bronze
Expand Down

0 comments on commit 9a6790e

Please sign in to comment.