int crafted = countItemInInventory() - this.count;
AutoRefMatch match = plugin.getMatch(player.getWorld());
if (match == null || !match.getCurrentState().inProgress()) return;
AutoRefPlayer apl = match.getPlayer((Player) player);
AchievementPoints ach = AchievementPoints.getEquipmentCraft(type);
if (apl != null) apl.addPoints(ach, crafted / this.size);
}