mirror of
https://github.com/YGGverse/HLState.git
synced 2025-02-10 22:14:14 +00:00
show real connections in players count
This commit is contained in:
parent
13292efe29
commit
becb46d1bc
@ -102,7 +102,9 @@ class MainController extends AbstractController
|
||||
'online' => $server->getOnline(),
|
||||
'info' => $info,
|
||||
'status' => $status,
|
||||
'sort' => empty($info['Players']) ? 0 : (int) $info['Players']
|
||||
'connections' => is_null($info['Players']) || $info['Players'] < 0 || is_null($info['Bots']) || $info['Bots'] < 0
|
||||
? 0
|
||||
: (int) $info['Players'] - (int) $info['Bots']
|
||||
];
|
||||
}
|
||||
|
||||
@ -110,7 +112,7 @@ class MainController extends AbstractController
|
||||
array_multisort(
|
||||
array_column(
|
||||
$servers,
|
||||
'sort'
|
||||
'connections'
|
||||
),
|
||||
SORT_DESC,
|
||||
$servers
|
||||
|
@ -175,7 +175,10 @@ class ServerController extends AbstractController
|
||||
'session' => $session,
|
||||
'online' => $online,
|
||||
'players' => $players,
|
||||
'status' => $status
|
||||
'status' => $status,
|
||||
'connections' => is_null($info['Players']) || $info['Players'] < 0 || is_null($info['Bots']) || $info['Bots'] < 0
|
||||
? 0
|
||||
: (int) $info['Players'] - (int) $info['Bots']
|
||||
]
|
||||
]
|
||||
);
|
||||
|
@ -35,7 +35,7 @@
|
||||
<td class="text-align-left">{{ server.info.Map }}</td>
|
||||
<td class="text-align-left">{{ server.added | format_date }}</td>
|
||||
<td class="text-align-left">{{ server.online | format_date }}</td>
|
||||
<td class="text-align-center">{{ server.info.Players }}</td>
|
||||
<td class="text-align-center">{{ server.connections }}{#{{ server.info.Players }}#}</td>
|
||||
<td class="text-align-center">{{ server.info.MaxPlayers }}</td>
|
||||
<td class="text-align-center">{{ server.info.Bots }}</td>
|
||||
<td class="text-align-center">
|
||||
|
@ -70,8 +70,17 @@
|
||||
<table>
|
||||
{% for key, value in server.info %}
|
||||
<tr>
|
||||
<td class="text-align-left">{{ key }}</td>
|
||||
<td class="text-align-left">{{ value }}</td>
|
||||
<td class="text-align-left">
|
||||
{{ key }}
|
||||
</td>
|
||||
<td class="text-align-left">
|
||||
{# let's show real connections for players {{ value }} #}
|
||||
{% if key == 'Players' %}
|
||||
{{ server.connections }}
|
||||
{% else %}
|
||||
{{ value }}
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
Loading…
x
Reference in New Issue
Block a user