public void DestroySpell(ISpellController spellController, bool isLocal)
 {
     spellsDictionary.Remove(spellController.GetGuid());
     if (isLocal)
     {
         localSpells.Remove(spellController);
     }
     else
     {
         onlineSpells.Remove(spellController);
     }
 }