Fix custom statistic criteria creation

This commit is contained in:
Noah van der Aa 2023-08-12 15:33:49 +02:00
parent 06b00246a2
commit 3b2125b47d

View File

@ -608,6 +608,12 @@ public final class CraftMagicNumbers implements UnsafeValues {
public void setBiomeKey(org.bukkit.RegionAccessor accessor, int x, int y, int z, org.bukkit.NamespacedKey biomeKey) {
accessor.setBiome(x, y, z, org.bukkit.Registry.BIOME.getOrThrow(biomeKey));
}
@Override
public String getStatisticCriteriaKey(org.bukkit.Statistic statistic) {
if (statistic.getType() != org.bukkit.Statistic.Type.UNTYPED) return "minecraft.custom:minecraft." + statistic.getKey().getKey();
return org.bukkit.craftbukkit.CraftStatistic.getNMSStatistic(statistic).getName();
}
// Paper end
/**