Purge hidden entities on unload too

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2021-12-04 08:23:26 +11:00
parent 4f6a5feac8
commit 6646c417c5
3 changed files with 12 additions and 5 deletions

View File

@@ -1154,8 +1154,8 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
}
}
public void removeDisconnectingPlayer(Player player) {
hiddenEntities.remove(player.getUniqueId());
public void onEntityRemove(Entity entity) {
hiddenEntities.remove(entity.getUUID());
}
@Override