Skip to content

Commit

Permalink
Use multiple of 144 for molten enderium
Browse files Browse the repository at this point in the history
  • Loading branch information
miozune authored and Dream-Master committed Nov 5, 2023
1 parent 4af71af commit c196b3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//version: 1697697256
//version: 1698936026
/*
DO NOT CHANGE THIS FILE!
Also, you may replace this file at any time if there is an update available.
Expand Down Expand Up @@ -646,7 +646,7 @@ repositories {

def mixinProviderGroup = "io.github.legacymoddingmc"
def mixinProviderModule = "unimixins"
def mixinProviderVersion = "0.1.7.1"
def mixinProviderVersion = "0.1.13"
def mixinProviderSpecNoClassifer = "${mixinProviderGroup}:${mixinProviderModule}:${mixinProviderVersion}"
def mixinProviderSpec = "${mixinProviderSpecNoClassifer}:dev"
ext.mixinProviderSpec = mixinProviderSpec
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import static gregtech.api.enums.Mods.TinkerConstruct;
import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sChemicalRecipes;
import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMultiblockChemicalRecipes;
import static gregtech.api.util.GT_RecipeBuilder.INGOTS;
import static gregtech.api.util.GT_RecipeBuilder.MINUTES;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
Expand Down Expand Up @@ -302,8 +303,8 @@ public void run() {
CustomItemList.DraconiumEgg.get(1L),
GT_ModHandler.getModItem(DraconicEvolution.ID, "dragonHeart", 0L, 0))
.itemOutputs(new ItemStack(Blocks.dragon_egg, 1, 0))
.fluidInputs(FluidRegistry.getFluidStack("molten.enderium", 1000)).requiresCleanRoom()
.duration(60 * MINUTES).eut(TierEU.RECIPE_EV).addTo(UniversalChemical);
.fluidInputs(Materials.Enderium.getMolten(7 * INGOTS)).requiresCleanRoom().duration(60 * MINUTES)
.eut(TierEU.RECIPE_EV).addTo(UniversalChemical);

}

Expand Down

0 comments on commit c196b3d

Please sign in to comment.