From c0ffe59d4796d93d5af2fb045e9c32e73ae29922 Mon Sep 17 00:00:00 2001 From: Ceikry Date: Sat, 1 Apr 2023 05:16:06 +0000 Subject: [PATCH] Fixed live console spam caused by ResetInterface not being listed as a valid outgoing packet --- Server/src/main/core/net/packet/PacketRepository.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/src/main/core/net/packet/PacketRepository.java b/Server/src/main/core/net/packet/PacketRepository.java index a99537fff..68177e7e4 100644 --- a/Server/src/main/core/net/packet/PacketRepository.java +++ b/Server/src/main/core/net/packet/PacketRepository.java @@ -74,6 +74,7 @@ public final class PacketRepository { OUTGOING_PACKETS.put(InstancedLocationUpdate.class, new InstancedLocationUpdate()); // OUTGOING_PACKETS.put(CSConfigPacket.class, new CSConfigPacket()); // OUTGOING_PACKETS.put(Varbit.class, new Varbit()); + OUTGOING_PACKETS.put(ResetInterface.class, new ResetInterface()); OUTGOING_PACKETS.put(VarcUpdate.class, new VarcUpdate()); }