Skip to content

Commit

Permalink
Fix compressed cobble giving weird/incorrect amounts of seared stone. #…
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Aug 21, 2014
1 parent b03b1ac commit 6f5a923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/smeltery/TinkerSmeltery.java
Expand Up @@ -1001,7 +1001,7 @@ public void addOreDictionarySmelteryRecipes ()
// Compressed materials
for (int i = 1; i <= 8; i++)
{
Smeltery.addDictionaryMelting("compressedCobblestone" + i + "x", FluidType.getFluidType("Stone"), 0, TConstruct.ingotLiquidValue / 18 * (9 ^ i));
Smeltery.addDictionaryMelting("compressedCobblestone" + i + "x", FluidType.getFluidType("Stone"), 0, TConstruct.ingotLiquidValue / 18 * (int)Math.pow(9, i));
}
Smeltery.addDictionaryMelting("compressedSand1x", FluidType.getFluidType("Glass"), 175, FluidContainerRegistry.BUCKET_VOLUME * 9);
}
Expand Down

0 comments on commit 6f5a923

Please sign in to comment.