1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

top stats info is per server instead of total when selecting each tab

fix issue with ingame name failing to match when using color codes
only show live radar for servers that support it
This commit is contained in:
RaidMax
2019-08-10 09:08:26 -05:00
parent 9e036c6f90
commit c2b5aed8cd
6 changed files with 47 additions and 11 deletions

View File

@ -94,6 +94,10 @@ namespace SharedLibraryCore.Database.Models
get { return CurrentAlias?.Name ?? "--"; }
set { if (CurrentAlias != null) CurrentAlias.Name = value; }
}
[NotMapped]
public string CleanedName => Name.StripColors();
[NotMapped]
public virtual int? IPAddress
{