aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0663-Fix-removing-recipes-from-RecipeIterator.patch
blob: fb78c572eb289c5b476bfd511c5d3f4503084e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Jake <jake.m.potrebic@gmail.com>
Date: Tue, 30 Nov 2021 12:01:56 -0800
Subject: [PATCH] Fix removing recipes from RecipeIterator

== AT ==
public net.minecraft.world.item.crafting.RecipeManager byName

diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/RecipeIterator.java b/src/main/java/org/bukkit/craftbukkit/inventory/RecipeIterator.java
index 65b12eaab871019def074bf17257772ff7f09806..5217e9f7e78e5d4d5751bba51554ff46666b77dd 100644
--- a/src/main/java/org/bukkit/craftbukkit/inventory/RecipeIterator.java
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/RecipeIterator.java
@@ -13,6 +13,7 @@ import org.bukkit.inventory.Recipe;
 public class RecipeIterator implements Iterator<Recipe> {
     private final Iterator<Map.Entry<RecipeType<?>, Object2ObjectLinkedOpenHashMap<ResourceLocation, RecipeHolder<?>>>> recipes;
     private Iterator<RecipeHolder<?>> current;
+    private Recipe currentRecipe; // Paper - fix removing recipes from RecipeIterator
 
     public RecipeIterator() {
         this.recipes = MinecraftServer.getServer().getRecipeManager().recipes.entrySet().iterator();
@@ -36,15 +37,27 @@ public class RecipeIterator implements Iterator<Recipe> {
     public Recipe next() {
         if (this.current == null || !this.current.hasNext()) {
             this.current = this.recipes.next().getValue().values().iterator();
-            return this.next();
+            // Paper start - fix removing recipes from RecipeIterator
+            this.currentRecipe = this.next();
+            return this.currentRecipe;
+            // Paper end - fix removing recipes from RecipeIterator
         }
 
-        return this.current.next().toBukkitRecipe();
+        // Paper start - fix removing recipes from RecipeIterator
+        this.currentRecipe = this.current.next().toBukkitRecipe();
+        return this.currentRecipe;
+        // Paper end - fix removing recipes from RecipeIterator
     }
 
     @Override
     public void remove() {
         Preconditions.checkState(this.current != null, "next() not yet called");
+
+        // Paper start - fix removing recipes from RecipeIterator
+        if (this.currentRecipe instanceof org.bukkit.Keyed keyed) {
+            MinecraftServer.getServer().getRecipeManager().byName.remove(org.bukkit.craftbukkit.util.CraftNamespacedKey.toMinecraft(keyed.getKey()));
+        }
+        // Paper end - fix removing recipes from RecipeIterator
         this.current.remove();
     }
 }