PaperMC/paper-server/patches/sources/net/minecraft/stats/ServerStatsCounter.java.patch

34 lines
1.7 KiB
Diff
Raw Normal View History

--- a/net/minecraft/stats/ServerStatsCounter.java
+++ b/net/minecraft/stats/ServerStatsCounter.java
2024-12-18 19:09:46 +01:00
@@ -51,9 +_,21 @@
2024-12-14 22:29:32 +01:00
LOGGER.error("Couldn't parse statistics file {}", file, var5);
}
}
+ // Paper start - Moved after stat fetching for player state file
+ // Moves the loading after vanilla loading, so it overrides the values.
+ // Disables saving any forced stats, so it stays at the same value (without enabling disableStatSaving)
+ // Fixes stat initialization to not cause a NullPointerException
+ // Spigot start
2024-12-18 19:09:46 +01:00
+ for (Map.Entry<ResourceLocation, Integer> entry : org.spigotmc.SpigotConfig.forcedStats.entrySet()) {
+ Stat<ResourceLocation> wrapper = Stats.CUSTOM.get(java.util.Objects.requireNonNull(BuiltInRegistries.CUSTOM_STAT.getValue(entry.getKey()))); // Paper - ensured by SpigotConfig#stats
2024-12-18 19:09:46 +01:00
+ this.stats.put(wrapper, entry.getValue().intValue());
+ }
+ // Spigot end
+ // Paper end - Moved after stat fetching for player state file
}
public void save() {
2024-12-18 19:09:46 +01:00
+ if (org.spigotmc.SpigotConfig.disableStatSaving) return; // Spigot
try {
FileUtils.writeStringToFile(this.file, this.toJson());
2024-12-14 22:29:32 +01:00
} catch (IOException var2) {
@@ -63,6 +_,8 @@
@Override
2024-12-14 22:29:32 +01:00
public void setValue(Player player, Stat<?> stat, int i) {
2024-12-18 19:09:46 +01:00
+ if (org.spigotmc.SpigotConfig.disableStatSaving) return; // Spigot
+ if (stat.getType() == Stats.CUSTOM && stat.getValue() instanceof final ResourceLocation resourceLocation && org.spigotmc.SpigotConfig.forcedStats.get(resourceLocation) != null) return; // Paper - disable saving forced stats
2024-12-14 22:29:32 +01:00
super.setValue(player, stat, i);
this.dirty.add(stat);
}