Add unique ID to PlayerResourcePackStatusEvent

This commit is contained in:
md_5 2023-12-06 20:27:57 +11:00
parent d9c1eb83af
commit be2884c416
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -1,5 +1,6 @@
package org.bukkit.event.player;
import java.util.UUID;
import org.bukkit.entity.Player;
import org.bukkit.event.HandlerList;
import org.jetbrains.annotations.NotNull;
@ -11,13 +12,25 @@ import org.jetbrains.annotations.NotNull;
public class PlayerResourcePackStatusEvent extends PlayerEvent {
private static final HandlerList handlers = new HandlerList();
private final UUID id;
private final Status status;
public PlayerResourcePackStatusEvent(@NotNull final Player who, @NotNull Status resourcePackStatus) {
public PlayerResourcePackStatusEvent(@NotNull final Player who, @NotNull UUID id, @NotNull Status resourcePackStatus) {
super(who);
this.id = id;
this.status = resourcePackStatus;
}
/**
* Gets the unique ID of this pack.
*
* @return unique resource pack ID.
*/
@NotNull
public UUID getID() {
return id;
}
/**
* Gets the status of this pack.
*