Something from level 4

This commit is contained in:
slawkens 2024-02-01 23:02:45 +01:00
parent 7bf9d81af9
commit b772a828ba

View File

@ -39,13 +39,13 @@ else {
if($i == 1) { if($i == 1) {
if($count <= 4) if($count <= 4)
$killers_string .= 'killed'; $killers_string .= 'killed';
else if($count > 4 and $count < 10) else if($count < 10)
$killers_string .= 'slain'; $killers_string .= 'slain';
else if($count > 9 and $count < 15) else if($count < 15)
$killers_string .= 'crushed'; $killers_string .= 'crushed';
else if($count > 14 and $count < 20) else if($count < 20)
$killers_string .= 'eliminated'; $killers_string .= 'eliminated';
else if($count > 19) else
$killers_string .= 'annihilated'; $killers_string .= 'annihilated';
$killers_string .= ' at level <b>' . $death['level'] . '</b> '; $killers_string .= ' at level <b>' . $death['level'] . '</b> ';
} else if($i == $count) } else if($i == $count)