2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Aikar <aikar@aikar.co>
Date: Sat, 9 Dec 2017 12:40:25 -0500
Subject: [PATCH] Display warning on deprecated recipe API
Any plugin still using this API will result in the server saving an inconsistent UUID to player data files,
which then triggers warnings such as "Tried to load unrecognized recipe: bukkit:9e5b92f5-e549-4f47-b0a8-9f89390ed77b removed now."
on the players login.
Plugin authors need to define a key to keep it consistent between server restarts.
diff --git a/src/main/java/org/bukkit/inventory/ShapedRecipe.java b/src/main/java/org/bukkit/inventory/ShapedRecipe.java
2024-12-03 15:47:48 +01:00
index 64916d17ee81cf2eaec7fbac1cb071db3b3eb258..55f4a6efa7dfb64f131f735f92356d01e7cc775a 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/org/bukkit/inventory/ShapedRecipe.java
+++ b/src/main/java/org/bukkit/inventory/ShapedRecipe.java
2023-08-06 02:21:59 +02:00
@@ -31,6 +31,7 @@ public class ShapedRecipe extends CraftingRecipe {
2024-12-03 15:47:48 +01:00
@Deprecated(since = "1.12")
2021-06-11 14:02:28 +02:00
public ShapedRecipe(@NotNull ItemStack result) {
2024-08-09 22:05:50 +02:00
this(NamespacedKey.randomKey(), result);
2023-08-06 02:21:59 +02:00
+ new Throwable("Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.").printStackTrace(); // Paper
2021-06-11 14:02:28 +02:00
}
2023-08-06 02:21:59 +02:00
/**
2021-06-11 14:02:28 +02:00
diff --git a/src/main/java/org/bukkit/inventory/ShapelessRecipe.java b/src/main/java/org/bukkit/inventory/ShapelessRecipe.java
2024-12-03 15:47:48 +01:00
index 354af775093fd3a74dac6c64244d8f3464397f72..a9d1f9fc129f757353b879fc5946c4b9299833ea 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/org/bukkit/inventory/ShapelessRecipe.java
+++ b/src/main/java/org/bukkit/inventory/ShapelessRecipe.java
2023-08-06 02:21:59 +02:00
@@ -20,6 +20,7 @@ public class ShapelessRecipe extends CraftingRecipe {
2024-12-03 15:47:48 +01:00
@Deprecated(since = "1.12")
2021-06-11 14:02:28 +02:00
public ShapelessRecipe(@NotNull ItemStack result) {
2024-08-09 22:05:50 +02:00
this(NamespacedKey.randomKey(), result);
2023-08-06 02:21:59 +02:00
+ new Throwable("Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.").printStackTrace(); // Paper
2021-06-11 14:02:28 +02:00
}
2023-08-06 02:21:59 +02:00
/**