Skip to content

Commit

Permalink
loadListeners is no longer abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Feb 25, 2023
1 parent 9336424 commit c99a1bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,9 @@ protected List<PacketListener> loadPacketListeners() {
*
* @return A list of all listeners.
*/
protected abstract List<Listener> loadListeners();
protected List<Listener> loadListeners() {
return new ArrayList<>();
}

/**
* Useful for custom LangYml implementations.
Expand Down

0 comments on commit c99a1bd

Please sign in to comment.