fix(javadocs): clarify the player's networking state when ServerPlayerEvents.COPY_FROM is called ()

This commit is contained in:
Octol1ttle 2025-03-09 13:58:18 +00:00 committed by GitHub
parent e99da0f77a
commit 62245befb1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,8 +26,10 @@ public final class ServerPlayerEvents {
/**
* An event that is called when the data from an old player is copied to a new player.
*
* <p>This event is typically called before a player is completely respawned.
* <p>This event is called <strong>after</strong> the old player is removed and untracked, but <strong>before</strong> the new player is added and tracked.
* Mods may use this event to copy old player data to a new player.
*
* @see ServerPlayerEvents#AFTER_RESPAWN
*/
public static final Event<ServerPlayerEvents.CopyFrom> COPY_FROM = EventFactory.createArrayBacked(ServerPlayerEvents.CopyFrom.class, callbacks -> (oldPlayer, newPlayer, alive) -> {
for (CopyFrom callback : callbacks) {