private static boolean isAlike(ItemStack a, ItemStack b) {
if(a == null || b == null) return false;
if(!a.hasItemMeta() || !b.hasItemMeta()) return a.isSimilar(b);
ItemMeta am = a.getItemMeta();
am.setDisplayName(null);
am.setLore(null);
ItemMeta bm = b.getItemMeta();
bm.setDisplayName(null);
bm.setLore(null);
ItemStack ac = a.clone();
ac.setItemMeta(am);
ItemStack bc = b.clone();
bc.setItemMeta(bm);
return ac.isSimilar(bc);
}