SPIGOT-4478: Update PlayerLoginEvent docs

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2018-11-10 20:30:27 +11:00
parent 4782571b82
commit 43b01394e5

View File

@ -6,7 +6,11 @@ import org.bukkit.entity.Player;
import org.bukkit.event.HandlerList;
/**
* Stores details for players attempting to log in
* Stores details for players attempting to log in.
* <br>
* Note that this event is called <i>early</i> in the player initialization
* process. It is recommended that most options involving the Player
* <i>entity</i> be postponed to the {@link PlayerJoinEvent} instead.
*/
public class PlayerLoginEvent extends PlayerEvent {
private static final HandlerList handlers = new HandlerList();