mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 23:31:13 -05:00
stats tweaked to scale SPM based on team size
invalid client id results in 404 rather than exception page performance based on traditional elo rating fixed @ (broadcast commands) added reports to penalty list and profile
This commit is contained in:
@ -15,6 +15,10 @@ namespace WebfrontCore.Controllers
|
||||
public async Task<IActionResult> ProfileAsync(int id)
|
||||
{
|
||||
var client = await Manager.GetClientService().Get(id);
|
||||
if (client == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var clientDto = new PlayerInfo()
|
||||
{
|
||||
|
@ -94,8 +94,7 @@
|
||||
}
|
||||
|
||||
.penalties-color-report {
|
||||
color: #749363;
|
||||
color: rgba(116, 147, 99, 1);
|
||||
color: #b3ae8f;
|
||||
}
|
||||
|
||||
.penalties-color-warning {
|
||||
|
Reference in New Issue
Block a user