Examples of onItemInteract()


Examples of org.getspout.spoutapi.material.CustomItem.onItemInteract()

      return;
    }
    Material mat = MaterialData.getMaterial(inHand.getTypeId(), inHand.getDurability());
    if (mat instanceof CustomItem) {
      CustomItem item = (CustomItem)mat;
      event.setCancelled(!item.onItemInteract((SpoutPlayer)event.getPlayer(), (SpoutBlock)event.getClickedBlock(), event.getBlockFace()) || event.isCancelled());
    }
  }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.