Skip to content

Commit

Permalink
#3408: ConcurrentModificationException when player quits
Browse files Browse the repository at this point in the history
  • Loading branch information
md-5 committed Dec 7, 2022
1 parent 5467e3a commit e717676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy/src/main/java/net/md_5/bungee/tab/ServerUnique.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void onUpdate(PlayerListItem playerListItem)
@Override
public void onUpdate(PlayerListItemRemove playerListItem)
{
for ( UUID uuid : uuids )
for ( UUID uuid : playerListItem.getUuids() )
{
uuids.remove( uuid );
}
Expand Down

0 comments on commit e717676

Please sign in to comment.