Support with MMOCore party module
Hey, I'm the author of MMOCore,
Our users have been constantly getting the following error message after updating to MythicDungeons 1.3+
[00:32:42 WARN]: [MMOCore] Could not initialize party module: Could not load compatibility with MythicDungeons
The problem is MythicDungeons and MMOCore both soft-depending on each other. On my server, I got MythicDungeons to enable after MMOCore, which caused the error above. Here is the code MMOCore runs on #onEnable()
:
this.hook = Bukkit.getServer().getServicesManager().load(MythicDungeonsService.class);
Validate.notNull(hook, "Could not load compatibility with MythicDungeons");
I assume the service manager of MythicDungeons is only registered when MythicDungeons enables, so if MD enables after MMOCore, integration will fail on my end. I'm affraid the only quality fix would be to have some sort of external Vault like API to handle external party plugins.