Issue Description
Inventory.builder.listener did not fire when using "InventoryArchetypes.ANVIL"
Inventory anvil = Inventory.builder()
.of(InventoryArchetypes.ANVIL)
.listener(InteractInventoryEvent.class, interact -> {
// did not fire when click or any interact action
System.out.println("111");
})
.build(Pokedeal.instance);
player.openInventory(anvil);```
// There is no any error throw out.
I am currently running
Issue Description Inventory.builder.listener did not fire when using "InventoryArchetypes.ANVIL"