Ejemplo n.º 1
0
 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);
         }
     }
 }
Ejemplo n.º 2
0
 public void RemoveAffix(Affix affix, NPC npc)
 {
     affix.RemoveAffix(npc);
     affixes.Remove(affix);
 }