diff options
author | GDCloud <93287602+GDCloudstrike@users.noreply.github.com> | 2023-12-04 00:15:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 00:15:32 +0100 |
commit | ae215b6af86d98ff63385d7695bff8a7e63ed320 (patch) | |
tree | 31a090bac21027764216e4788246f39fe025b553 /src/main | |
parent | 557e45e61b93ac4238741029d76d4f70ebe5ced4 (diff) | |
download | GT5-Unofficial-ae215b6af86d98ff63385d7695bff8a7e63ed320.tar.gz GT5-Unofficial-ae215b6af86d98ff63385d7695bff8a7e63ed320.tar.bz2 GT5-Unofficial-ae215b6af86d98ff63385d7695bff8a7e63ed320.zip |
tweak stellar plasma consumption (#263)
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java index 2b7b7d7087..52edbc8a96 100644 --- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java +++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java @@ -775,7 +775,7 @@ public class GT_MetaTileEntity_EM_EyeOfHarmony extends GT_MetaTileEntity_Multibl double hydrogenExcessPercentage = hydrogenStored / hydrogenRecipeRequirement - 1; double heliumExcessPercentage = heliumStored / heliumRecipeRequirement - 1; double stellarPlasmaExcessPercentage = stellarPlasmaStored - / (heliumRecipeRequirement * (9 / 1_000_000f) * parallelAmount) - 1; + / (heliumRecipeRequirement * (12.4 / 1_000_000f) * parallelAmount) - 1; hydrogenOverflowProbabilityAdjustment = 1 - exp(-pow(30 * hydrogenExcessPercentage, 2)); heliumOverflowProbabilityAdjustment = 1 - exp(-pow(30 * heliumExcessPercentage, 2)); @@ -1013,7 +1013,7 @@ public class GT_MetaTileEntity_EM_EyeOfHarmony extends GT_MetaTileEntity_Multibl .addInfo("instead of helium and hydrogen. Overflow penalties still apply.") .addInfo( "The required amount of fluid to start a recipe is " + GREEN - + "9 / 10^6 * heliumAmount * parallel" + + "12.4 / 10^6 * heliumAmount * parallel" + GRAY + ".") .addInfo("All item & fluid outputs including failure fluid are multiplied by the amount of parallel.") @@ -1192,7 +1192,7 @@ public class GT_MetaTileEntity_EM_EyeOfHarmony extends GT_MetaTileEntity_Multibl // Debug mode, overwrites the required fluids to initiate the recipe to 100L of each. if (parallelAmount > 1) { if ((EOH_DEBUG_MODE && getStellarPlasmaStored() < 100) || (!EOH_DEBUG_MODE && getStellarPlasmaStored() - < currentRecipe.getHeliumRequirement() * (9 / 1_000_000f) * parallelAmount)) { + < currentRecipe.getHeliumRequirement() * (12.4 / 1_000_000f) * parallelAmount)) { return SimpleCheckRecipeResult.ofFailure("no_stellarPlasma"); } } |