mirror of
https://github.com/PikaMug/Quests.git
synced 2024-11-22 18:45:27 +01:00
Revert item meta comparison, fixes #1785
This commit is contained in:
parent
845753ebf4
commit
a795ebe360
@ -96,7 +96,7 @@ public class ItemUtil {
|
||||
}
|
||||
}
|
||||
if (one.getItemMeta() != null || two.getItemMeta() != null) {
|
||||
if (one.getItemMeta() != null && two.getItemMeta() != null) {
|
||||
if (one.getItemMeta() != null && two.getItemMeta() == null) {
|
||||
return -4;
|
||||
} else if (!one.hasItemMeta() && two.hasItemMeta()) {
|
||||
return -4;
|
||||
|
Loading…
Reference in New Issue
Block a user