mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
16 lines
412 B
Diff
16 lines
412 B
Diff
--- 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);
|
|
}
|