mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-23 15:29:34 +01:00
Fix removing recipes (#6965)
This commit is contained in:
parent
257767914b
commit
64dd6f189d
2 changed files with 64 additions and 0 deletions
|
@ -271,3 +271,6 @@ public net.minecraft.world.level.chunk.LevelChunkSection states
|
||||||
|
|
||||||
# Player.setPlayerProfile API
|
# Player.setPlayerProfile API
|
||||||
public-f net.minecraft.world.entity.player.Player gameProfile
|
public-f net.minecraft.world.entity.player.Player gameProfile
|
||||||
|
|
||||||
|
# Fix removing recipes
|
||||||
|
public net.minecraft.world.item.crafting.RecipeManager byName
|
||||||
|
|
61
patches/server/Fix-removing-recipes.patch
Normal file
61
patches/server/Fix-removing-recipes.patch
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||||
|
Date: Tue, 30 Nov 2021 12:01:56 -0800
|
||||||
|
Subject: [PATCH] Fix removing recipes
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
||||||
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
||||||
|
@@ -0,0 +0,0 @@ public final class CraftServer implements Server {
|
||||||
|
ResourceLocation mcKey = CraftNamespacedKey.toMinecraft(recipeKey);
|
||||||
|
for (Object2ObjectLinkedOpenHashMap<ResourceLocation, net.minecraft.world.item.crafting.Recipe<?>> recipes : this.getServer().getRecipeManager().recipes.values()) {
|
||||||
|
if (recipes.remove(mcKey) != null) {
|
||||||
|
+ this.getServer().getRecipeManager().byName.remove(mcKey); // Paper
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/RecipeIterator.java b/src/main/java/org/bukkit/craftbukkit/inventory/RecipeIterator.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/org/bukkit/craftbukkit/inventory/RecipeIterator.java
|
||||||
|
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/RecipeIterator.java
|
||||||
|
@@ -0,0 +0,0 @@ import org.bukkit.inventory.Recipe;
|
||||||
|
public class RecipeIterator implements Iterator<Recipe> {
|
||||||
|
private final Iterator<Map.Entry<RecipeType<?>, Object2ObjectLinkedOpenHashMap<ResourceLocation, net.minecraft.world.item.crafting.Recipe<?>>>> recipes;
|
||||||
|
private Iterator<net.minecraft.world.item.crafting.Recipe<?>> current;
|
||||||
|
+ private Recipe currentRecipe; // Paper - fix removing recipes
|
||||||
|
|
||||||
|
public RecipeIterator() {
|
||||||
|
this.recipes = MinecraftServer.getServer().getRecipeManager().recipes.entrySet().iterator();
|
||||||
|
@@ -0,0 +0,0 @@ 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
|
||||||
|
+ this.currentRecipe = this.next();
|
||||||
|
+ return this.currentRecipe;
|
||||||
|
+ // Paper end
|
||||||
|
}
|
||||||
|
|
||||||
|
- return this.current.next().toBukkitRecipe();
|
||||||
|
+ // Paper start - fix removing recipes
|
||||||
|
+ this.currentRecipe = this.current.next().toBukkitRecipe();
|
||||||
|
+ return this.currentRecipe;
|
||||||
|
+ // Paper end
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@@ -0,0 +0,0 @@ public class RecipeIterator implements Iterator<Recipe> {
|
||||||
|
throw new IllegalStateException("next() not yet called");
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // Paper start - fix removing recipes
|
||||||
|
+ if (this.currentRecipe instanceof org.bukkit.Keyed keyed) {
|
||||||
|
+ MinecraftServer.getServer().getRecipeManager().byName.remove(org.bukkit.craftbukkit.util.CraftNamespacedKey.toMinecraft(keyed.getKey()));
|
||||||
|
+ }
|
||||||
|
+ // Paper end
|
||||||
|
this.current.remove();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue