Fixed tiny factory sort issue
This commit is contained in:
parent
ce629e218c
commit
d2753abc92
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ public final class StackUtils
|
|||
return false;
|
||||
}
|
||||
|
||||
return stack1.itemID != stack2.itemID;
|
||||
return stack1.itemID != stack2.itemID || stack1.getItemDamage() != stack2.getItemDamage();
|
||||
}
|
||||
|
||||
public static boolean equalsWildcard(ItemStack wild, ItemStack check)
|
||||
|
|
Loading…
Add table
Reference in a new issue