mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
actually fix the previous issue
This commit is contained in:
@ -76,11 +76,11 @@ namespace SharedLibraryCore.Database.Models
|
||||
[NotMapped]
|
||||
public virtual int? IPAddress
|
||||
{
|
||||
get => CurrentAlias.IPAddress;
|
||||
get => CurrentAlias?.IPAddress;
|
||||
set => CurrentAlias.IPAddress = value;
|
||||
}
|
||||
|
||||
[NotMapped] public string IPAddressString => IPAddress is null ? null : IPAddress.ConvertIPtoString();
|
||||
[NotMapped] public string IPAddressString => IPAddress.ConvertIPtoString();
|
||||
|
||||
[NotMapped] public bool IsIngame => ClientNumber >= 0;
|
||||
|
||||
|
Reference in New Issue
Block a user