Skip to content

Commit

Permalink
Merge pull request #215 from CuteLittleSky/patch-2
Browse files Browse the repository at this point in the history
Fix energyOutputRecipe
  • Loading branch information
ProfElements authored Aug 10, 2024
2 parents 41ca5f6 + 0d67c4f commit d7b598a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ DynaTechItems.STAINLESS_STEEL_INGOT, new ItemStack(Material.BUCKET),
final Recipe energyOutputRecipe = DynaTech.getRecipeRegistry()
.getRecipesByOutput(DynaTechItems.ENERGY_OUTPUT_COMPONENT).toList().get(0);
new UnplaceableBlock(DynaTechItems.DT_EXPERIMENTAL, DynaTechItems.ENERGY_OUTPUT_COMPONENT,
energyOutputRecipe.getRecipeType(), energyInputRecipe.getInput()).register(plugin);
energyOutputRecipe.getRecipeType(), energyOutputRecipe.getInput()).register(plugin);

final Recipe degradedWaterMillRecipe = DynaTech.getRecipeRegistry()
.getRecipesByOutput(DynaTechItems.DEGRADED_WATER_MILL).toList().get(0);
Expand Down

0 comments on commit d7b598a

Please sign in to comment.