Advertisement
Guest User

Untitled

a guest
Jun 13th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1.     public static boolean canCraft(ItemStack slot1, ItemStack slot2) {
  2.         Item one = slot1.getItem();
  3.         Item two = slot2.getItem();
  4.         return (one instanceof IUpgradeMaterial && two instanceof IngensEquipItem) ||
  5.                 (one instanceof IngensEquipItem && two instanceof IUpgradeMaterial);
  6.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement