Add unique ID to PlayerResourcePackStatusEvent

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2023-12-06 20:27:57 +11:00
parent 9a3f67bc0b
commit c5f936087b

View File

@@ -1,5 +1,6 @@
package org.bukkit.event.player; package org.bukkit.event.player;
import java.util.UUID;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import org.bukkit.event.HandlerList; import org.bukkit.event.HandlerList;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
@@ -11,13 +12,25 @@ import org.jetbrains.annotations.NotNull;
public class PlayerResourcePackStatusEvent extends PlayerEvent { public class PlayerResourcePackStatusEvent extends PlayerEvent {
private static final HandlerList handlers = new HandlerList(); private static final HandlerList handlers = new HandlerList();
private final UUID id;
private final Status status; 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); super(who);
this.id = id;
this.status = resourcePackStatus; 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. * Gets the status of this pack.
* *