Skip to content

Commit

Permalink
fix: rhodium plated foil doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
bruberu committed Nov 11, 2024
1 parent ffa7ca5 commit d9306d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main/java/gregtechfoodoption/item/GTFOMetaItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import gregtech.api.items.metaitem.stats.IItemContainerItemProvider;
import gregtech.api.items.toolitem.IGTTool;
import gregtech.api.unification.OreDictUnifier;
import gregtech.api.unification.material.Materials;
import gregtech.api.unification.ore.OrePrefix;
import gregtech.api.util.RandomPotionEffect;
import gregtech.common.items.MetaItems;
Expand Down Expand Up @@ -1124,7 +1125,7 @@ public void registerSubItems() {
.nutrients(0, 0f, 2f, 0f, 2f)
.setPotionEffects(new RandomPotionEffect(EnhancedChorusPotion.INSTANCE, 1200, 0, 100 - 100)));

NAQUADAH_CHIPS = addItem(354, "food.naquadah_chips").addComponents(new GTFOFoodStats(GTFOConfig.gtfoFoodConfig.chipHunger, GTFOConfig.gtfoFoodConfig.chipSaturation, false, true, () -> OreDictUnifier.get(OrePrefix.foil, RhodiumPlatedPalladium))
NAQUADAH_CHIPS = addItem(354, "food.naquadah_chips").addComponents(new GTFOFoodStats(GTFOConfig.gtfoFoodConfig.chipHunger, GTFOConfig.gtfoFoodConfig.chipSaturation, false, true, () -> OreDictUnifier.get(OrePrefix.foil, Materials.TungstenSteel))
.nutrients(0, 0f, 1f, 0f, 1f)
.setPotionEffects(new RandomPotionEffect(MobEffects.BLINDNESS, 500, 0, 100 - 100)));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static void init() {
CANNER_RECIPES.recipeBuilder().EUt(64).duration(100)
.fluidInputs(Naquadah.getFluid(10))
.inputs(REDUCED_FAT_POTATO_SLICE.getStackForm(40))
.input(foil, RhodiumPlatedPalladium)
.input(foil, TungstenSteel)
.outputs(NAQUADAH_CHIPS.getStackForm())
.buildAndRegister();
CHEMICAL_BATH_RECIPES.recipeBuilder().EUt(60).duration(1000)
Expand Down

0 comments on commit d9306d2

Please sign in to comment.