Make the packet type check 1.17 only

This commit is contained in:
libraryaddict 2021-06-29 07:02:17 +12:00
parent 5ab0e4a45c
commit 14d6fc7257
1 changed files with 5 additions and 3 deletions

View File

@ -24,10 +24,12 @@ public class PacketListenerScoreboardTeam extends PacketAdapter {
public void onPacketSending(PacketEvent event) {
PacketContainer packet = event.getPacket();
int type = packet.getIntegers().read(0);
if (NmsVersion.v1_17.isSupported()) {
int type = packet.getIntegers().read(0);
if (type != 0 && type != 2) {
return;
if (type != 0 && type != 2) {
return;
}
}
String name = packet.getStrings().read(0);