
Auto-register integration handlers based on module requirements
codetaylor opened this issue ยท 1 comments
Currently each mod must register integration handlers provided by the lib, such as:
this.registerIntegrationHandler(
"jei",
"com.codetaylor.mc.athenaeum.integration.jei.IntegrationPluginHandlerJEI"
);
It would be more convenient if the ModBase
class could load and initialize handlers as needed by modules.