MythicNetwork/MythicSpigot-master/TacoSpigot-Server/nms-patches/PacketPlayInCloseWindow.patch

25 lines
690 B
Diff
Raw Normal View History

2023-05-25 01:58:23 +02:00
--- a/net/minecraft/server/PacketPlayInCloseWindow.java
+++ b/net/minecraft/server/PacketPlayInCloseWindow.java
@@ -8,6 +8,12 @@
public PacketPlayInCloseWindow() {}
+ // CraftBukkit start
+ public PacketPlayInCloseWindow(int id) {
+ this.id = id;
+ }
+ // CraftBukkit end
+
public void a(PacketListenerPlayIn packetlistenerplayin) {
packetlistenerplayin.a(this);
}
@@ -19,8 +25,4 @@
public void b(PacketDataSerializer packetdataserializer) throws IOException {
packetdataserializer.writeByte(this.id);
}
-
- public void a(PacketListener packetlistener) {
- this.a((PacketListenerPlayIn) packetlistener);
- }
}