2023-08-12 23:50:21 +02:00
|
|
|
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
|
2024-10-31 23:44:34 +01:00
|
|
|
index b2ab190a73946ad2a5750c2408036cc3641e23f8..cfafd64ee39a6448e382f9903b8c462f3c454d3f 100644
|
2023-08-12 23:50:21 +02:00
|
|
|
--- a/src/main/java/org/bukkit/UnsafeValues.java
|
|
|
|
+++ b/src/main/java/org/bukkit/UnsafeValues.java
|
2024-10-31 23:44:34 +01:00
|
|
|
@@ -256,4 +256,6 @@ public interface UnsafeValues {
|
|
|
|
@Deprecated(since = "1.21.3", forRemoval = true)
|
2023-08-12 23:50:21 +02:00
|
|
|
void setBiomeKey(RegionAccessor accessor, int x, int y, int z, NamespacedKey biomeKey);
|
2024-05-23 19:32:02 +02:00
|
|
|
// Paper end - namespaced key biome methods
|
2023-08-12 23:50:21 +02:00
|
|
|
+
|
2024-05-23 19:32:02 +02:00
|
|
|
+ String getStatisticCriteriaKey(@NotNull org.bukkit.Statistic statistic); // Paper - fix custom stats criteria creation
|
2023-08-12 23:50:21 +02:00
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|