getCause

open fun getCause(): <Error class: unknown class>

Gets the cause for the event. The Cause of the event is an object which implements the Iterable interface. So, when investigating the Cause of the event a common idiom is to use operations (functions) on the result of getCause as follows:

Use-case: Getting the Player (if any) responsible: Optional<Player> optPlayer = event.getCause().first(Player.class);

Return

The cause