Skip to content

Commit

Permalink
com.dreammaster.item.ItemList -> NHItemList (#88)
Browse files Browse the repository at this point in the history
Co-authored-by: chochem <[email protected]>
  • Loading branch information
YannickMG and chochem authored Jan 11, 2025
1 parent 31cf8d2 commit 50ae315
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
compileOnly("com.github.GTNewHorizons:Natura:2.8.0:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:NewHorizonsCoreMod:2.7.45:dev") {
compileOnly("com.github.GTNewHorizons:NewHorizonsCoreMod:2.7.47:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:Galacticraft:3.3.1-GTNH:dev") {
Expand All @@ -27,6 +27,6 @@ dependencies {
//runtimeOnly("com.github.GTNewHorizons:TinkersConstruct:1.13.3-GTNH:dev")
//runtimeOnly("com.github.GTNewHorizons:EnderIO:2.9.2:dev")
//runtimeOnly("com.github.GTNewHorizons:Natura:2.8.0:dev")
//runtimeOnly("com.github.GTNewHorizons:NewHorizonsCoreMod:2.7.43:dev")
//runtimeOnly("com.github.GTNewHorizons:NewHorizonsCoreMod:2.7.47:dev")
//runtimeOnly("com.github.GTNewHorizons:Galacticraft:3.3.1-GTNH:dev")
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import net.minecraftforge.fluids.FluidStack;
import net.minecraftforge.oredict.OreDictionary;

import com.dreammaster.item.NHItemList;
import com.github.bartimaeusnek.croploadcore.OreDict;
import com.github.bartimaeusnek.cropspp.fluids.CppFluids;
import com.github.bartimaeusnek.cropspp.items.CppItems;
Expand Down Expand Up @@ -563,7 +564,7 @@ public final void run() {
if (Mods.NewHorizonsCoreMod.isModLoaded()) {

GTValues.RA.stdBuilder().itemInputs(new ItemStack(CppItems.Modifier, 16, 1))
.itemOutputs(com.dreammaster.item.ItemList.PrimordialPearlFragment.getIS().splitStack(3))
.itemOutputs(NHItemList.PrimordialPearlFragment.getIS().splitStack(3))
.fluidInputs(Materials.UUMatter.getFluid(52)).duration(20 * MINUTES).eut(384)
.addTo(RecipeMaps.autoclaveRecipes);
}
Expand Down

0 comments on commit 50ae315

Please sign in to comment.