Release Version 2.0

This commit is contained in:
Sn0wStorm
2019-12-13 13:23:40 +01:00
parent 9afeae7774
commit e7a77bf2a1
6 changed files with 5 additions and 18 deletions
@@ -172,8 +172,6 @@ public class BCauldronRecipe {
//double mod = 0.1 + (0.9 * Math.exp(-0.03 * difference)); // logarithmic curve from 1 to 0.1
double mod = 1 + (0.9 * -Math.exp(-0.03 * factor)); // logarithmic curve from 0.1 to 1, small for a low factor
P.p.debugLog("Mod for " + recipeIng + ": " + mod);
match *= mod;
continue search;
}