Skip to content

Commit

Permalink
Fix 1.8.9 filter compat issue
Browse files Browse the repository at this point in the history
See #22
  • Loading branch information
roccodev committed Apr 6, 2020
1 parent df3af2e commit 6c5c414
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions mod/src/main/java/eu/the5zig/mod/chat/network/Protocol.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,10 @@ public Protocol() {
register(0x62, PacketPartyInviteDelete.class, ConnectionState.PLAY);
register(0x63, PacketPartyStatus.class, ConnectionState.PLAY);

// Reborn
register(0x90, PacketAuthToken.class, ConnectionState.PLAY);
register(0x91, PacketNewMessages.class, ConnectionState.PLAY);
register(0x92, PacketSettings.class, ConnectionState.PLAY);
}

private void register(int id, Class packet, ConnectionState state) {
Expand Down

0 comments on commit 6c5c414

Please sign in to comment.