Skip to content

Commit

Permalink
Merge branch 'master' into fix/forbidden_gmi
Browse files Browse the repository at this point in the history
  • Loading branch information
Dream-Master authored Aug 29, 2024
2 parents 8adc2ee + 0cc2ab4 commit c1ef434
Show file tree
Hide file tree
Showing 3 changed files with 384 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import com.dreammaster.gthandler.recipes.LatheRecipes;
import com.dreammaster.gthandler.recipes.MaceratorRecipes;
import com.dreammaster.gthandler.recipes.MixerRecipes;
import com.dreammaster.gthandler.recipes.NeutroniumCompressorRecipes;
import com.dreammaster.gthandler.recipes.RecipeRemoval;
import com.dreammaster.gthandler.recipes.SifterRecipes;
import com.dreammaster.gthandler.recipes.SpaceAssemblerRecipes;
Expand Down Expand Up @@ -75,6 +76,7 @@ public void run() {
new LatheRecipes().run();
new MaceratorRecipes().run();
new MixerRecipes().run();
new NeutroniumCompressorRecipes().run();
new SifterRecipes().run();
new VacuumFreezerRecipes().run();
new WiremillRecipes().run();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

import com.dreammaster.block.BlockList;
import com.dreammaster.gthandler.CustomItemList;
import com.elisis.gtnhlanth.common.register.WerkstoffMaterialPool;

import gregtech.api.enums.GT_Values;
import gregtech.api.enums.ItemList;
Expand Down Expand Up @@ -98,6 +99,10 @@ public void run() {
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.block, Materials.NetherStar, 1))
.duration(15 * SECONDS).eut(TierEU.RECIPE_UV).addTo(compressorRecipes);

GT_Values.RA.stdBuilder().itemInputs(WerkstoffMaterialPool.Gangue.get(OrePrefixes.dust, 9))
.itemOutputs((WerkstoffMaterialPool.Gangue.get(OrePrefixes.block, 1))).duration(10 * SECONDS)
.eut(TierEU.RECIPE_LV).addTo(compressorRecipes);

// compressed coal variants
GT_Values.RA.stdBuilder().itemInputs(GT_OreDictUnificator.get(OrePrefixes.block, Materials.Charcoal, 9))
.itemOutputs(BlockList.CompressedCharcoal.getIS(1)).duration(15 * SECONDS).eut(2)
Expand Down
Loading

0 comments on commit c1ef434

Please sign in to comment.