Fix GlobalEventHandler

This commit is contained in:
TheMode 2021-08-17 02:35:43 +02:00
parent 523c9b512a
commit c5cf7e4ab2
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import java.util.function.Consumer;
/**
* Object containing all the global event listeners.
*/
public final class GlobalEventHandler extends EventNode<Event> {
public final class GlobalEventHandler extends EventNodeImpl<Event> {
public GlobalEventHandler() {
super("global", EventFilter.ALL, null);
}