Paper/nms-patches/CraftingManager.patch

33 lines
981 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/CraftingManager.java
+++ b/net/minecraft/server/CraftingManager.java
2018-07-15 02:00:00 +02:00
@@ -96,12 +96,14 @@
do {
if (!iterator.hasNext()) {
2018-07-15 02:00:00 +02:00
+ iinventory.setCurrentRecipe(null); // CraftBukkit - Clear recipe when no recipe is found
2016-11-17 02:41:03 +01:00
return ItemStack.a;
}
irecipe = (IRecipe) iterator.next();
2018-07-15 02:00:00 +02:00
} while (!irecipe.a(iinventory, world));
2015-02-26 23:41:06 +01:00
2018-07-15 02:00:00 +02:00
+ iinventory.setCurrentRecipe(irecipe); // CraftBukkit
return irecipe.craftItem(iinventory);
2017-05-14 04:00:00 +02:00
}
2018-07-15 02:00:00 +02:00
@@ -113,12 +115,14 @@
2017-05-14 04:00:00 +02:00
do {
if (!iterator.hasNext()) {
2018-07-15 02:00:00 +02:00
+ iinventory.setCurrentRecipe(null); // CraftBukkit - Clear recipe when no recipe is found
2017-05-14 04:00:00 +02:00
return null;
}
irecipe = (IRecipe) iterator.next();
2018-07-15 02:00:00 +02:00
} while (!irecipe.a(iinventory, world));
2017-05-14 04:00:00 +02:00
2018-07-15 02:00:00 +02:00
+ iinventory.setCurrentRecipe(irecipe); // CraftBukkit
2017-05-14 04:00:00 +02:00
return irecipe;
}