mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-17 05:03:55 -07:00
Don't save empty scoreboard teams to scoreboard.dat
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
--- a/net/minecraft/world/scores/ScoreboardSaveData.java
|
||||||
|
+++ b/net/minecraft/world/scores/ScoreboardSaveData.java
|
||||||
|
@@ -148,6 +148,7 @@
|
||||||
|
ListTag listTag = new ListTag();
|
||||||
|
|
||||||
|
for (PlayerTeam playerTeam : this.scoreboard.getPlayerTeams()) {
|
||||||
|
+ if (!io.papermc.paper.configuration.GlobalConfiguration.get().scoreboards.saveEmptyScoreboardTeams && playerTeam.getPlayers().isEmpty()) continue; // Paper - Don't save empty scoreboard teams to scoreboard.dat
|
||||||
|
CompoundTag compoundTag = new CompoundTag();
|
||||||
|
compoundTag.putString("Name", playerTeam.getName());
|
||||||
|
compoundTag.putString("DisplayName", Component.Serializer.toJson(playerTeam.getDisplayName(), registries));
|
Reference in New Issue
Block a user