Remove players from player team map on team remove

This commit is contained in:
Camotoy 2023-02-02 16:31:26 -05:00
parent 0388785ea7
commit 25c2d30881
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 3 additions and 0 deletions

View File

@ -351,6 +351,9 @@ public final class Scoreboard {
// We need to use the direct entities list here, so #refreshSessionPlayerDisplays also updates accordingly
// With the player's lack of a team in visibility checks
updateEntityNames(remove, remove.getEntities(), true);
for (String name : remove.getEntities()) {
playerToTeam.remove(name, remove);
}
session.removeCommandEnum("Geyser_Teams", remove.getId());
}