diff --git a/src/main/java/org/bukkit/event/player/PlayerResourcePackStatusEvent.java b/src/main/java/org/bukkit/event/player/PlayerResourcePackStatusEvent.java index b9819565..8ed6214e 100644 --- a/src/main/java/org/bukkit/event/player/PlayerResourcePackStatusEvent.java +++ b/src/main/java/org/bukkit/event/player/PlayerResourcePackStatusEvent.java @@ -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; } }