public static bool CheckArtifactChance(Mobile m, BaseCreature bc) { if (!Core.ML || bc is BasePeerless) // Peerless drops to the corpse, this is handled elsewhere { return(false); } return(Paragon.CheckArtifactChance(m, bc)); }
public static bool CheckArtifactChance(Mobile m, BaseCreature bc) { if (!Core.ML) { return(false); } return(Paragon.CheckArtifactChance(m, bc)); }
public static bool CheckArtifactChance(Mobile m, BaseCreature bc) { if (bc == null || !bc.EraML) { return(false); } return(Paragon.CheckArtifactChance(m, bc)); }
public static bool CheckArtifactChance(Mobile m, BaseCreature bc) { XmlParagon xa = GetXmlParagon(bc); if (xa != null) { return(xa.XmlCheckArtifactChance(m, bc)); } else { return(Paragon.CheckArtifactChance(m, bc)); } }