SPIGOT-4708: Fix ExactChoice recipes neglecting material

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-04-21 10:30:37 +10:00
parent dee9a212cf
commit 93e3d6bec1

View file

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