From 1f6b0518fc2e9a5be430135e78b3530ccb8e2125 Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Fri, 27 Sep 2024 11:08:41 -0700 Subject: [PATCH] register the MI unifier for EI (#92) --- CHANGELOG.md | 1 + .../com/almostreliable/unified/api/constant/ModConstants.java | 1 + .../java/com/almostreliable/unified/core/NeoForgePlugin.java | 1 + 3 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 233a719..0c6e277 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Common/src/main/java/com/almostreliable/unified/api/constant/ModConstants.java b/Common/src/main/java/com/almostreliable/unified/api/constant/ModConstants.java index d5d5a30..23fd8df 100644 --- a/Common/src/main/java/com/almostreliable/unified/api/constant/ModConstants.java +++ b/Common/src/main/java/com/almostreliable/unified/api/constant/ModConstants.java @@ -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"; diff --git a/NeoForge/src/main/java/com/almostreliable/unified/core/NeoForgePlugin.java b/NeoForge/src/main/java/com/almostreliable/unified/core/NeoForgePlugin.java index 9771e45..7820ffe 100644 --- a/NeoForge/src/main/java/com/almostreliable/unified/core/NeoForgePlugin.java +++ b/NeoForge/src/main/java/com/almostreliable/unified/core/NeoForgePlugin.java @@ -41,6 +41,7 @@ public class NeoForgePlugin implements AlmostUnifiedPlugin { 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());