Skip to content

Commit

Permalink
Don't warn if clients send subchunkrequest packets (#4395)
Browse files Browse the repository at this point in the history
  • Loading branch information
onebeastchris authored Jan 24, 2024
1 parent 7bcecdf commit 97ba6a2
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,11 @@ public PacketSignal handle(SetPlayerGameTypePacket packet) {
return defaultHandler(packet);
}

@Override
public PacketSignal handle(SubChunkRequestPacket packet) {
return defaultHandler(packet);
}

@Override
public PacketSignal handle(SubClientLoginPacket packet) {
return defaultHandler(packet);
Expand Down

0 comments on commit 97ba6a2

Please sign in to comment.