aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0845-API-for-updating-recipes-on-clients.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0845-API-for-updating-recipes-on-clients.patch')
-rw-r--r--patches/server/0845-API-for-updating-recipes-on-clients.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/patches/server/0845-API-for-updating-recipes-on-clients.patch b/patches/server/0845-API-for-updating-recipes-on-clients.patch
index dd2aa28e95..7cae857359 100644
--- a/patches/server/0845-API-for-updating-recipes-on-clients.patch
+++ b/patches/server/0845-API-for-updating-recipes-on-clients.patch
@@ -39,10 +39,10 @@ index 2912b15ccda373cf52cec020b0e06ac2c5cf2950..a6caf3a0df22f124a4ee1cfb3981bbeb
Iterator iterator1 = this.players.iterator();
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
-index 2dd20823769f1a3a2d028cd64d3af5989429d1ac..00f8042538a698995299aaa57212e7091c1af634 100644
+index bb89247a87067a74d793a1acc1eb95b98ace3d9e..75c222e592d676e98b293767d00de54a61411ae7 100644
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
-@@ -1174,6 +1174,18 @@ public final class CraftServer implements Server {
+@@ -1176,6 +1176,18 @@ public final class CraftServer implements Server {
ReloadCommand.reload(this.console);
}
@@ -61,7 +61,7 @@ index 2dd20823769f1a3a2d028cd64d3af5989429d1ac..00f8042538a698995299aaa57212e709
private void loadIcon() {
this.icon = new CraftIconCache(null);
try {
-@@ -1553,6 +1565,13 @@ public final class CraftServer implements Server {
+@@ -1555,6 +1567,13 @@ public final class CraftServer implements Server {
@Override
public boolean addRecipe(Recipe recipe) {
@@ -75,7 +75,7 @@ index 2dd20823769f1a3a2d028cd64d3af5989429d1ac..00f8042538a698995299aaa57212e709
CraftRecipe toAdd;
if (recipe instanceof CraftRecipe) {
toAdd = (CraftRecipe) recipe;
-@@ -1582,6 +1601,11 @@ public final class CraftServer implements Server {
+@@ -1584,6 +1603,11 @@ public final class CraftServer implements Server {
}
}
toAdd.addToCraftingManager();
@@ -87,7 +87,7 @@ index 2dd20823769f1a3a2d028cd64d3af5989429d1ac..00f8042538a698995299aaa57212e709
return true;
}
-@@ -1762,10 +1786,23 @@ public final class CraftServer implements Server {
+@@ -1764,10 +1788,23 @@ public final class CraftServer implements Server {
@Override
public boolean removeRecipe(NamespacedKey recipeKey) {