Skip to content

Commit

Permalink
bugfixes and fullpack testing
Browse files Browse the repository at this point in the history
  • Loading branch information
funions123 committed Nov 4, 2024
1 parent 940f001 commit a4c8480
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void run() {
.itemInputs(
GTUtility.getIntegratedCircuit(21),
Materials.Aluminium.getPlates(2),
GTOreDictUnificator.get(OrePrefixes.motor, Materials.LV, 1),
gregtech.api.enums.ItemList.Electric_Motor_LV.get(1L),
ItemUtils.getItemStackFromFQRN("dreamcraft:item.SteelBars", 2))
.fluidInputs()
.itemOutputs(new ItemStack(ItemList.BASIC_HEAT_VENT, 1))
Expand All @@ -104,7 +104,7 @@ public void run() {
GTUtility.getIntegratedCircuit(21),
Ic2Items.industrialDiamond,
new ItemStack(ItemList.BASIC_HEAT_VENT, 1),
getModItem(NewHorizonsCoreMod.ID, "item.StainlessSteelBars", 4))
ItemUtils.getItemStackFromFQRN("dreamcraft:item.StainlessSteelBars", 4))
.fluidInputs()
.itemOutputs(new ItemStack(ItemList.ADVANCED_HEAT_VENT, 1))
.duration(15 * SECONDS)
Expand All @@ -115,7 +115,7 @@ public void run() {
.itemInputs(
GTUtility.getIntegratedCircuit(21),
GTOreDictUnificator.get(OrePrefixes.plateDense, Materials.Tin, 2),
getModItem(NewHorizonsCoreMod.ID, "item.SteelBars", 4),
ItemUtils.getItemStackFromFQRN("dreamcraft:item.StainlessSteelBars", 4),
new ItemStack(ItemList.BASIC_HEAT_VENT, 1))
.fluidInputs()
.itemOutputs(new ItemStack(ItemList.COMPONENT_HEAT_VENT, 1))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public void run() {
GTValues.RA.stdBuilder()
.itemInputs(MaterialsFluorides.SODIUM_FLUORIDE.getDust(2))
.itemOutputs(Materials.Sodium.getDust(1))
.fluidOutputs(Materials.Fluorine.getFluid(1000))
.fluidOutputs(Materials.Fluorine.getGas(1000))
.duration(1 * MINUTES)
.eut(TierEU.RECIPE_MV)
.addTo(electrolyzerRecipes);
Expand Down

0 comments on commit a4c8480

Please sign in to comment.