Example #1
0
 public void UpdateCustomName(StringBuilder text)
 {
     if (CustomName.CompareUpdate(text))
     {
         RaiseCustomNameChanged();
         RaiseShowOnHUDChanged();
         DisplayNameText = text.ToString();
     }
 }
Example #2
0
 public void UpdateCustomName(string text)
 {
     if (CustomName.CompareUpdate(text))
     {
         RaiseCustomNameChanged();
         RaiseShowOnHUDChanged();
         DisplayNameText = text;
     }
 }