Skip to content

Commit

Permalink
fix(bungee): tab not being translated on 1.19 (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
diogotcorreia authored May 21, 2023
1 parent 1f237d2 commit fc0d70e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private void handlePlayerListItem(DefinedPacket packet) {

private void handlePlayerListItemUpdate(DefinedPacket packet) {
PlayerListItemUpdate p = (PlayerListItemUpdate) packet;
if (p.getActions().contains(PlayerListItemUpdate.Action.UPDATE_DISPLAY_NAME)) {
if (!p.getActions().contains(PlayerListItemUpdate.Action.UPDATE_DISPLAY_NAME)) {
return;
}
List<PlayerListItem.Item> items = new ArrayList<>();
Expand Down

0 comments on commit fc0d70e

Please sign in to comment.