Update old item matching to use the new ItemMatcher class

This commit is contained in:
Len
2025-12-26 00:18:08 +01:00
parent bcba3413c5
commit ffdafd07d2
3 changed files with 4 additions and 165 deletions
@@ -110,7 +110,7 @@ public class PlayerShop {
}
public boolean matches(ItemStack item) {
return ShopUtil.matches(getItemStack(), item);
return ItemMatcher.matches(getItemStack(), item);
}
public void remove(ItemStack item, int amount) {