mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-30 06:24:06 +01:00
96d5e6ca48
Currently includes generated key holder classes for types used in the Registry Modification API
32 lines
1.6 KiB
Diff
32 lines
1.6 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Noah van der Aa <ndvdaa@gmail.com>
|
|
Date: Sat, 12 Aug 2023 15:33:55 +0200
|
|
Subject: [PATCH] Fix custom statistic criteria creation
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/UnsafeValues.java b/src/main/java/org/bukkit/UnsafeValues.java
|
|
index 815b16338ed5f90daf24edc5be14a6f49e978832..a4b38f284d4fea7df7f9df9bf44e4f68fefaf20f 100644
|
|
--- a/src/main/java/org/bukkit/UnsafeValues.java
|
|
+++ b/src/main/java/org/bukkit/UnsafeValues.java
|
|
@@ -257,5 +257,7 @@ public interface UnsafeValues {
|
|
* @throws IllegalStateException if no biome by the given key is registered.
|
|
*/
|
|
void setBiomeKey(RegionAccessor accessor, int x, int y, int z, NamespacedKey biomeKey);
|
|
+
|
|
+ String getStatisticCriteriaKey(@NotNull org.bukkit.Statistic statistic);
|
|
// Paper end
|
|
}
|
|
diff --git a/src/main/java/org/bukkit/scoreboard/Criteria.java b/src/main/java/org/bukkit/scoreboard/Criteria.java
|
|
index 7d79d7fadab19bfbefc4797d7e5bbd3e9d733b53..3bc3abaf093d13e22b6ac2ee59ab584c92b4666a 100644
|
|
--- a/src/main/java/org/bukkit/scoreboard/Criteria.java
|
|
+++ b/src/main/java/org/bukkit/scoreboard/Criteria.java
|
|
@@ -335,7 +335,7 @@ public interface Criteria {
|
|
@NotNull
|
|
public static Criteria statistic(@NotNull Statistic statistic) {
|
|
Preconditions.checkArgument(statistic != null, "statistic must not be null");
|
|
- return Bukkit.getScoreboardCriteria("minecraft.custom:minecraft." + statistic.getKey().getKey());
|
|
+ return Bukkit.getScoreboardCriteria(org.bukkit.Bukkit.getUnsafe().getStatisticCriteriaKey(statistic)); // Paper
|
|
}
|
|
|
|
/**
|