mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
actually fix the previous issue
This commit is contained in:
parent
a1316f254c
commit
c94ff08315
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user