Remove debug

This commit is contained in:
fullwall 2024-09-09 01:42:39 +08:00
parent a87756616d
commit 91e4fb10fc

View File

@ -161,7 +161,6 @@ public class ItemAction extends NPCShopAction {
private boolean metaMatches(ItemStack needle, ItemStack haystack, List<String> meta) {
Map<String, Object> source = NMS.getComponentMap(needle);
Map<String, Object> compare = NMS.getComponentMap(haystack);
System.out.println(source + " " + compare);
for (String nbt : meta) {
String[] parts = nbt.split("\\.");
Object acc = source;