Skip to content

Commit

Permalink
register the MI unifier for EI (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla authored and rlnt committed Sep 27, 2024
1 parent 3cb2af8 commit 1f6b051
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning].
- added `end` stone variant to config defaults
- added debug option to toggle logging invalid tag warnings, false by default
- added logging for potentially broken recipes caused by unification
- added support for Extended Industrialization ([#92](https://github.com/AlmostReliable/almostunified/pull/92))
- fixed unification for EnderIO outputs
- removed EnderIO unifier since it's fully supported by the generic unifier

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public interface ModConstants {
String INTEGRATED_DYNAMICS = "integrateddynamics";
String MEKANISM = "mekanism";
String MODERN_INDUSTRIALIZATION = "modern_industrialization";
String EXTENDED_INDUSTRIALIZATION = "extended_industrialization";
String OCCULTISM = "occultism";
String PRODUCTIVE_TREES = "productivetrees";
String THEURGY = "theurgy";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public void registerRecipeUnifiers(RecipeUnifierRegistry registry) {
registry.registerForModId(ModConstants.INTEGRATED_DYNAMICS, new IntegratedDynamicsRecipeUnifier());
registry.registerForModId(ModConstants.MEKANISM, new MekanismRecipeUnifier());
registry.registerForModId(ModConstants.MODERN_INDUSTRIALIZATION, new ModernIndustrializationRecipeUnifier());
registry.registerForModId(ModConstants.EXTENDED_INDUSTRIALIZATION, new ModernIndustrializationRecipeUnifier());
registry.registerForModId(ModConstants.OCCULTISM, new OccultismRecipeUnifier());
registry.registerForModId(ModConstants.PRODUCTIVE_TREES, new ProductiveTreesRecipeUnifier());
registry.registerForModId(ModConstants.THEURGY, new TheurgyRecipeUnifier());
Expand Down

0 comments on commit 1f6b051

Please sign in to comment.