mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 15:30:19 +01:00
SPIGOT-4708: Fix ExactChoice recipes neglecting material
This commit is contained in:
parent
9ead700959
commit
3697519ba5
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
|||
|
||||
+ // CraftBukkit start
|
||||
+ if (exact) {
|
||||
+ if (ItemStack.equals(itemstack, itemstack1)) {
|
||||
+ if (itemstack1.getItem() == itemstack.getItem() && ItemStack.equals(itemstack, itemstack1)) {
|
||||
+ return true;
|
||||
+ }
|
||||
+
|
||||
|
|
Loading…
Reference in a new issue