3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 20:40:08 +01:00

SPIGOT-4708: Fix ExactChoice recipes neglecting material

Dieser Commit ist enthalten in:
md_5 2019-04-21 10:30:37 +10:00
Ursprung 9ead700959
Commit 3697519ba5

Datei anzeigen

@ -14,7 +14,7 @@
+ // CraftBukkit start
+ if (exact) {
+ if (ItemStack.equals(itemstack, itemstack1)) {
+ if (itemstack1.getItem() == itemstack.getItem() && ItemStack.equals(itemstack, itemstack1)) {
+ return true;
+ }
+