From 444551ffa4ae49e227e5dc60c85c8504c7d0003a Mon Sep 17 00:00:00 2001 From: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> Date: Tue, 5 Jul 2022 06:16:18 +0100 Subject: Spacetime adjustment (#149) Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> Former-commit-id: adcf3b8945631e2abb2d95ca853b80aa0ca46495 --- .../bartworks/common/loaders/StaticRecipeChangeLoaders.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/StaticRecipeChangeLoaders.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/StaticRecipeChangeLoaders.java index 098dd2c8d0..28bb257350 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/StaticRecipeChangeLoaders.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/StaticRecipeChangeLoaders.java @@ -492,13 +492,13 @@ public class StaticRecipeChangeLoaders { // Custom electric implosion compressor recipe. Cannot be overclocked. if (Loader.isModLoaded("eternalsingularity")) { - // 1L SpaceTime -> 1 Eternal singularity. + // 72L SpaceTime -> 1 Eternal singularity. eicMap.addRecipe( false, new ItemStack[]{GT_Values.NI}, new ItemStack[]{GT_ModHandler.getModItem("eternalsingularity", "eternal_singularity", 1L)}, null, - new FluidStack[]{Materials.SpaceTime.getMolten(1L)}, + new FluidStack[]{Materials.SpaceTime.getMolten(72L)}, new FluidStack[]{GT_Values.NF}, 100*20, 128_000_000, 1); // aSpecialVaue has no meaning here. } -- cgit