diff options
author | GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> | 2023-02-11 06:53:19 +0000 |
---|---|---|
committer | GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> | 2023-02-11 06:53:19 +0000 |
commit | ca8e6aff70022e49abe264551ff674aa69907833 (patch) | |
tree | 719b832a2d32f7003e7b6c8799a58092e9897101 | |
parent | 597c9e98b9b53f768c0809503ef7b7083f558da4 (diff) | |
download | GT5-Unofficial-ca8e6aff70022e49abe264551ff674aa69907833.tar.gz GT5-Unofficial-ca8e6aff70022e49abe264551ff674aa69907833.tar.bz2 GT5-Unofficial-ca8e6aff70022e49abe264551ff674aa69907833.zip |
Buff success chance
-rw-r--r-- | src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java b/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java index f0f5534232..cd5d20aed6 100644 --- a/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java +++ b/src/main/java/com/github/technus/tectech/recipe/EyeOfHarmonyRecipeStorage.java @@ -71,7 +71,7 @@ public class EyeOfHarmonyRecipeStorage { BILLION * (blockDimensionDisplay.getDimensionRocketTier() + 1), timeCalculator(blockDimensionDisplay.getDimensionRocketTier()), blockDimensionDisplay.getDimensionRocketTier(), - 1.0 - blockDimensionDisplay.getDimensionRocketTier() / 10.0)); + 1.0 - 0.05 * blockDimensionDisplay.getDimensionRocketTier())); } catch (Exception e) { e.printStackTrace(); } |