Fixed integration loaders not in

This commit is contained in:
Auxilor 2022-01-08 13:51:35 +00:00
parent 03327db98b
commit ff3768dc6f

View File

@ -137,10 +137,14 @@ public class EcoEnchantsPlugin extends EcoPlugin {
@Override
protected List<IntegrationLoader> loadIntegrationLoaders() {
return Arrays.asList(
List<IntegrationLoader> loaders = new ArrayList<>(Arrays.asList(
new IntegrationLoader("Essentials", () -> RegistrationManager.register(new IntegrationEssentials())),
new IntegrationLoader("MythicMobs", () -> MythicMobsManager.register(new IntegrationMythicMobs()))
);
));
loaders.addAll(LibReforge.getIntegrationLoaders());
return loaders;
}
@Override