Package org.mctourney.autoreferee

Examples of org.mctourney.autoreferee.AutoRefMatch.canCraft()


    BlockData recipeTarget = BlockData.fromItemStack(event.getRecipe().getResult());
    if (team != null && !team.canCraft(recipeTarget)) event.setCancelled(true);

    // if this is on the blacklist, cancel
    if (!match.canCraft(recipeTarget)) event.setCancelled(true);
  }

  @EventHandler(priority=EventPriority.MONITOR, ignoreCancelled=true)
  public void itemCraftMonitor(CraftItemEvent event)
  {
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.