Class PostServerListSetEvent
java.lang.Object
org.bukkit.event.Event
ch.andre601.advancedserverlist.api.bukkit.events.PostServerListSetEvent
Called after the plugin has updated the Server List.
The provided ProfileEntry may be null due to the PingEvent handling being cancelled (i.e. due
to an invalid protocol or due to the PreServerListSetEvent
being cancelled.
The entry also only represents the values used during the PingEvent, not the actual content that is being displayed.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Constructor Summary
ConstructorDescriptionConstructor for creating a new PostServerListSetEvent instance. -
Method Summary
Modifier and TypeMethodDescription@Nullable ProfileEntry
getEntry()
TheProfileEntry
that was used during the PingEvent handling.static HandlerList
StaticHandlerList
getter.@NotNull HandlerList
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
PostServerListSetEvent
Constructor for creating a new PostServerListSetEvent instance.- Parameters:
entry
- TheProfileEntry
used during the PingEvent.
-
-
Method Details
-
getHandlerList
StaticHandlerList
getter. Required by Paper.- Returns:
- The static HandlerList instance of this event.
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getEntry
The
ProfileEntry
that was used during the PingEvent handling.The returned value may be
null
should the PingEvent handling be cancelled at any point (i.e. due to an invalid protocol or because thePreServerListSetEvent
has been cancelled).
The values within the ProfileEntry also do not represent what is actually used within the Server List itself, but only the values provided for the PingEvent handling.- Returns:
- Possibly-null ProfileEntry used for the PingEvent.
-