mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-04-13 09:41:09 +00:00
SPIGOT-7526: Add missing PlayerResourcePackStatusEvent statuses
This commit is contained in:
parent
adcf6347c5
commit
68f5bb6a95
1 changed files with 17 additions and 1 deletions
|
@ -60,6 +60,22 @@ public class PlayerResourcePackStatusEvent extends PlayerEvent {
|
|||
/**
|
||||
* The client accepted the pack and is beginning a download of it.
|
||||
*/
|
||||
ACCEPTED;
|
||||
ACCEPTED,
|
||||
/**
|
||||
* The client successfully downloaded the pack.
|
||||
*/
|
||||
DOWNLOADED,
|
||||
/**
|
||||
* The pack URL was invalid.
|
||||
*/
|
||||
INVALID_URL,
|
||||
/**
|
||||
* The client was unable to reload the pack.
|
||||
*/
|
||||
FAILED_RELOAD,
|
||||
/**
|
||||
* The pack was discarded by the client.
|
||||
*/
|
||||
DISCARDED;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue