mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-05 19:47:00 -04:00
fix(javadocs): clarify the player's networking state when ServerPlayerEvents.COPY_FROM is called (#4484)
This commit is contained in:
parent
e99da0f77a
commit
62245befb1
1 changed files with 3 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue