mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-05 16:49:39 +00:00
Add unique ID to PlayerResourcePackStatusEvent
This commit is contained in:
parent
d9c1eb83af
commit
be2884c416
1 changed files with 14 additions and 1 deletions
|
@ -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.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue