mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2025-02-05 02:41:24 +01:00
Fixed integration loaders not in
This commit is contained in:
parent
03327db98b
commit
ff3768dc6f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user