Skip to content

Commit

Permalink
Fix Compressed Gravel not being used up when making brownstone.
Browse files Browse the repository at this point in the history
Fix Liquid Values required for casting being exponentially too high.
Add a Brownstone Recipe with Tin and Compressed Gravel, since Electrum may not be available.
Change the Electrum recipe to require 1/3 of the liquid as tin.
  • Loading branch information
bonii-xx committed Aug 21, 2014
1 parent 1839c6b commit d0ce912
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/tconstruct/smeltery/TinkerSmeltery.java
Expand Up @@ -1416,13 +1416,15 @@ public void modIntegration ()
ores = OreDictionary.getOres("compressedGravel1x");
if (ores.size() > 0)
{
basinCasting.addCastingRecipe(new ItemStack(TinkerSmeltery.speedBlock, 9), new FluidStack(TinkerSmeltery.moltenElectrumFluid, TConstruct.blockLiquidValue), ores.get(0), 100);
basinCasting.addCastingRecipe(new ItemStack(TinkerSmeltery.speedBlock, 9), new FluidStack(TinkerSmeltery.moltenTinFluid, TConstruct.ingotLiquidValue), ores.get(0), true, 100);
basinCasting.addCastingRecipe(new ItemStack(TinkerSmeltery.speedBlock, 9), new FluidStack(TinkerSmeltery.moltenElectrumFluid, TConstruct.ingotLiquidValue/3), ores.get(0), true, 100);
}
ores = OreDictionary.getOres("compressedGravel2x"); // Higher won't save
// properly
if (ores.size() > 0)
{
basinCasting.addCastingRecipe(new ItemStack(TinkerSmeltery.speedBlock, 81), new FluidStack(TinkerSmeltery.moltenElectrumFluid, TConstruct.blockLiquidValue * 9), ores.get(0), 100);
basinCasting.addCastingRecipe(new ItemStack(TinkerSmeltery.speedBlock, 81), new FluidStack(TinkerSmeltery.moltenTinFluid, TConstruct.blockLiquidValue), ores.get(0), true, 100);
basinCasting.addCastingRecipe(new ItemStack(TinkerSmeltery.speedBlock, 81), new FluidStack(TinkerSmeltery.moltenElectrumFluid, TConstruct.blockLiquidValue/3), ores.get(0), true, 100);
}

/* Rubber */
Expand Down

0 comments on commit d0ce912

Please sign in to comment.