fan87

Results 2 issues of fan87

Here's an example code: ```java Events.subscribe(PlayerJoinEvent.class) .name("listenerA") // Optional, and by adding it you can reference it .handler(e -> e.setJoinMessage("A")); Events.subscribe(PlayerJoinEvent.class) .name("listenerB") .mustRunAfter("listenerA") // Still: Optional. This will ensure that...

**Is your feature request related to a problem? Please describe.** Touch screens are currently unsupported and they will be emulated as mouse input, scrolling and other touch actions won't work....

enhancement