public void UpdateEmotion(EmotionDTO oldEmotion, EmotionDTO newEmotion)
 {
     _rpcAsset.RemoveEmotion(oldEmotion);
     _rpcAsset.AddActiveEmotion(newEmotion);
     Emotions.DataSource = _rpcAsset.GetAllActiveEmotions().ToList();
     Emotions.Refresh();
 }