register the MI unifier for EI (#92)

This commit is contained in:
Jason Penilla 2024-09-27 11:08:41 -07:00 committed by rlnt
parent 3cb2af8794
commit 1f6b0518fc
No known key found for this signature in database
3 changed files with 3 additions and 0 deletions

View file

@ -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

View file

@ -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";

View file

@ -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());