diff --git a/lib/classes/Score.class.php b/lib/classes/Score.class.php index 1a1b5d91622a9fd8b0329fa21e2a082cfcdc0ea3..3de97147f48ed50a5759ab35c02ee0b7d49e6a29 100644 --- a/lib/classes/Score.class.php +++ b/lib/classes/Score.class.php @@ -81,8 +81,8 @@ class Score $logscore = 0; } - if ($logscore > 20) { - $logscore = 20; + if ($logscore > 21) { + $logscore = 21; } $titel = []; @@ -107,6 +107,7 @@ class Score $titel[18] = [_('Lichtgestalt'), _('Lichtgestalt')]; $titel[19] = [_('Halbgott'), _('Halbgöttin')]; $titel[20] = [_('Gott'), _('Göttin')]; + $titel[21] = [_('Primum Movens'), _('Primum Movens')]; return $titel[$logscore][$gender == 2 ? 1 : 0]; }