Merge pull request #66 from MrPetovan/task/34-no-desc-health-cap

Cap health score if server doesn't have a description
This commit is contained in:
Tobias Diekershoff 2020-09-27 19:16:49 +02:00 committed by GitHub
commit 72d5e68c96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 2 deletions

View File

@ -199,7 +199,8 @@ class Server
$probe_result['time'],
$version,
$probe_result['ssl_state'],
$avg_ping
$avg_ping,
$probe_result['data']['info'] ?? null
);
$this->atlas->perform(
@ -324,7 +325,8 @@ class Server
?int $time,
?string $version,
?int $ssl_state,
?float $avg_ping
?float $avg_ping,
?string $description
): int
{
//Probe failed, costs you 30 points.
@ -396,6 +398,11 @@ class Server
}
}
// No description available penalty
if (!$description) {
$max_health = min(75, $max_health);
}
// No ping penalty
if (!$avg_ping) {
$max_health -= 5;