mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
SPIGOT-4708: Fix ExactChoice recipes neglecting material
By: md_5 <git@md-5.net>
This commit is contained in:
parent
dee9a212cf
commit
93e3d6bec1
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
+ // CraftBukkit start
|
+ // CraftBukkit start
|
||||||
+ if (exact) {
|
+ if (exact) {
|
||||||
+ if (ItemStack.equals(itemstack, itemstack1)) {
|
+ if (itemstack1.getItem() == itemstack.getItem() && ItemStack.equals(itemstack, itemstack1)) {
|
||||||
+ return true;
|
+ return true;
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
|
|
Loading…
Reference in a new issue