mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 15:52:25 -05:00
renable weapon name in anticheat snapshot list
update migrations for unique index fix missing total connection time include total connection time in get client query
This commit is contained in:
@ -14,7 +14,7 @@ namespace Tests
|
||||
|
||||
public override string Version => "test";
|
||||
|
||||
public override async Task<List<EFClient>> GetStatusAsync(Connection connection)
|
||||
public override async Task<(List<EFClient>, string)> GetStatusAsync(Connection connection)
|
||||
{
|
||||
var clientList = new List<EFClient>();
|
||||
|
||||
@ -32,7 +32,7 @@ namespace Tests
|
||||
});
|
||||
}
|
||||
|
||||
return clientList.Count > 0 ? clientList : FakeClients;
|
||||
return clientList.Count > 0 ? (clientList, "mp_rust") : (FakeClients, "mp_rust");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user