EchoPet

EchoPet

882k Downloads

GUI losing items.

mibby opened this issue ยท 3 comments

commented

User opens pet menu. Drags item in menu GUI. Menu closes. Item is lost. Any way to prevent items from being dragged in any of the GUI inventory slots?

commented
@EventHandler
        public void onClickSlot(InventoryClickEvent e) {
            if(e.getSlot() == 1) {
                e.setResult(Result.DENY);
                e.setCancelled(true);
            }
        }
commented

Confirmed fixed.
b6bcac8

commented

o/