Implement PlayerResourcePackStatusEvent.

By: Adam Thomas <aet2505@gmail.com>
This commit is contained in:
CraftBukkit/Spigot
2015-07-25 18:19:37 +10:00
parent 9a15d77433
commit e909dd95d8
2 changed files with 70 additions and 41 deletions

View File

@@ -0,0 +1,22 @@
--- a/net/minecraft/server/PacketPlayInResourcePackStatus.java
+++ b/net/minecraft/server/PacketPlayInResourcePackStatus.java
@@ -5,7 +5,7 @@
public class PacketPlayInResourcePackStatus implements Packet<PacketListenerPlayIn> {
private String a;
- private PacketPlayInResourcePackStatus.EnumResourcePackStatus b;
+ public PacketPlayInResourcePackStatus.EnumResourcePackStatus b; // PAIL: private -> public, rename: status
public PacketPlayInResourcePackStatus() {}
@@ -23,10 +23,6 @@
packetlistenerplayin.a(this);
}
- public void a(PacketListener packetlistener) {
- this.a((PacketListenerPlayIn) packetlistener);
- }
-
public static enum EnumResourcePackStatus {
SUCCESSFULLY_LOADED, DECLINED, FAILED_DOWNLOAD, ACCEPTED;