9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-30 20:39:10 +00:00

fix(bukkit): 修复缺少

This commit is contained in:
jhqwqmc
2025-04-26 21:21:11 +08:00
parent 3efa571add
commit 2625a0c396

View File

@@ -5811,8 +5811,8 @@ public class Reflections {
public static final Class<?> clazz$ServerboundCustomPayloadPacket = requireNonNull(
BukkitReflectionUtils.findReobfOrMojmapClass(
"network.protocol.game.PacketPlayInCustomPayload",
"network.protocol.common.ServerboundCustomPayloadPacket"
List.of("network.protocol.game.PacketPlayInCustomPayload", "network.protocol.common.ServerboundCustomPayloadPacket"),
List.of("network.protocol.game.ServerboundCustomPayloadPacket", "network.protocol.common.ServerboundCustomPayloadPacket")
)
);
@@ -5865,8 +5865,8 @@ public class Reflections {
public static final Class<?> clazz$ClientboundDisconnectPacket = requireNonNull(
BukkitReflectionUtils.findReobfOrMojmapClass(
"network.protocol.game.PacketPlayOutKickDisconnect",
"network.protocol.common.ClientboundDisconnectPacket"
List.of("network.protocol.game.PacketPlayOutKickDisconnect", "network.protocol.common.ClientboundDisconnectPacket"),
List.of("network.protocol.game.ClientboundDisconnectPacket", "network.protocol.common.ClientboundDisconnectPacket")
)
);