From b772a828bada88339e90ab3ee0c708c94b04b4ce Mon Sep 17 00:00:00 2001 From: slawkens Date: Thu, 1 Feb 2024 23:02:45 +0100 Subject: [PATCH] Something from level 4 --- system/pages/last-kills.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/system/pages/last-kills.php b/system/pages/last-kills.php index 798d91c3..1c02764d 100644 --- a/system/pages/last-kills.php +++ b/system/pages/last-kills.php @@ -39,13 +39,13 @@ else { if($i == 1) { if($count <= 4) $killers_string .= 'killed'; - else if($count > 4 and $count < 10) + else if($count < 10) $killers_string .= 'slain'; - else if($count > 9 and $count < 15) + else if($count < 15) $killers_string .= 'crushed'; - else if($count > 14 and $count < 20) + else if($count < 20) $killers_string .= 'eliminated'; - else if($count > 19) + else $killers_string .= 'annihilated'; $killers_string .= ' at level ' . $death['level'] . ' '; } else if($i == $count)