loadListeners is no longer abstract

This commit is contained in:
Auxilor
2023-02-25 19:02:14 +00:00
parent 93364247de
commit c99a1bd50a

View File

@@ -713,7 +713,9 @@ public abstract class EcoPlugin extends JavaPlugin implements PluginLike {
*
* @return A list of all listeners.
*/
protected abstract List<Listener> loadListeners();
protected List<Listener> loadListeners() {
return new ArrayList<>();
}
/**
* Useful for custom LangYml implementations.