From d0d14c9c98d9c20f86db285b1c6409467494a5ef Mon Sep 17 00:00:00 2001 From: Bernhard Bonigl Date: Fri, 26 Sep 2014 13:23:48 +0200 Subject: [PATCH] Give lava the same temperature as the actual liquid (minor speed buff) and make pyrotheum much faster --- src/main/java/tconstruct/smeltery/TinkerSmeltery.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/tconstruct/smeltery/TinkerSmeltery.java b/src/main/java/tconstruct/smeltery/TinkerSmeltery.java index a88a574ae4a..98d0e0a3a68 100644 --- a/src/main/java/tconstruct/smeltery/TinkerSmeltery.java +++ b/src/main/java/tconstruct/smeltery/TinkerSmeltery.java @@ -1070,11 +1070,11 @@ protected void addRecipesForBasinCasting () protected static void addRecipesForSmeltery () { // Smeltery fuels - Smeltery.addSmelteryFuel(FluidRegistry.LAVA, 1000, 10); + Smeltery.addSmelteryFuel(FluidRegistry.LAVA, 1300, 10); // register pyrotheum if it's present Fluid pyrotheum = FluidRegistry.getFluid("pyrotheum"); if (pyrotheum != null) - Smeltery.addSmelteryFuel(pyrotheum, 1500, 9); + Smeltery.addSmelteryFuel(pyrotheum, 5000, 9); // BLOOD FOR THE BLOOD GOD if (TinkerWorld.meatBlock != null)