Commit ef637086 authored by Benjamin Elsdon's avatar Benjamin Elsdon Committed by Melledy
Browse files

Change BANNED_PACKETS to HashSet instaed of List

parent fffa5a9c
package emu.grasscutter.net.packet;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
public class PacketOpcodes {
......@@ -1556,5 +1557,8 @@ public class PacketOpcodes {
public static final int UNKNOWN_44 = 8983;
public static final int UNKNOWN_45 = 943;
public static final List<Integer> BANNED_PACKETS = Arrays.asList(PacketOpcodes.WindSeedClientNotify, PacketOpcodes.PlayerLuaShellNotify);
public static final HashSet<Integer> BANNED_PACKETS = new HashSet<Integer>() {{
add(PacketOpcodes.WindSeedClientNotify);
add(PacketOpcodes.PlayerLuaShellNotify);
}};
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment