mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-14 11:15:23 -05:00
register the MI unifier for EI (#92)
This commit is contained in:
parent
3cb2af8794
commit
1f6b0518fc
3 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue