Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static boolean canCraft(ItemStack slot1, ItemStack slot2) {
- Item one = slot1.getItem();
- Item two = slot2.getItem();
- return (one instanceof IUpgradeMaterial && two instanceof IngensEquipItem) ||
- (one instanceof IngensEquipItem && two instanceof IUpgradeMaterial);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement