public void RemoveAffix(Affix affix, Item item) { affix.RemoveAffix(item); affixes.Remove(affix); if (affix.IsPrefix) { prefixes.Remove(affix); } else { if (affix.IsSuffix) { suffixes.Remove(affix); } } }
public void RemoveAffix(Affix affix, NPC npc) { affix.RemoveAffix(npc); affixes.Remove(affix); }