Fix team sidebar objectives not being cleared
Objectives displayed in team sidebars were not cleared when switching scoreboards. If a player's scoreboard has a displayed objective for the 'gold' sidebar, and their scoreboard was switched to one where they still had a 'gold' team, it would still be displayed
This commit is contained in:
@@ -87,8 +87,8 @@ public final class CraftScoreboardManager implements ScoreboardManager {
|
|||||||
|
|
||||||
// Old objective tracking
|
// Old objective tracking
|
||||||
HashSet<Objective> removed = new HashSet<>();
|
HashSet<Objective> removed = new HashSet<>();
|
||||||
for (int i = 0; i < 3; ++i) {
|
for (net.minecraft.world.scores.DisplaySlot slot : net.minecraft.world.scores.DisplaySlot.values()) { // Paper - clear all display slots
|
||||||
Objective scoreboardobjective = oldboard.getDisplayObjective(net.minecraft.world.scores.DisplaySlot.BY_ID.apply(i));
|
Objective scoreboardobjective = oldboard.getDisplayObjective(slot); // Paper - clear all display slots
|
||||||
if (scoreboardobjective != null && !removed.contains(scoreboardobjective)) {
|
if (scoreboardobjective != null && !removed.contains(scoreboardobjective)) {
|
||||||
entityplayer.connection.send(new ClientboundSetObjectivePacket(scoreboardobjective, 1));
|
entityplayer.connection.send(new ClientboundSetObjectivePacket(scoreboardobjective, 1));
|
||||||
removed.add(scoreboardobjective);
|
removed.add(scoreboardobjective);
|
||||||
|
|||||||
Reference in New Issue
Block a user