diff --git a/src/responses/player/Rank.php b/src/responses/player/Rank.php index 88032cd..d1110af 100644 --- a/src/responses/player/Rank.php +++ b/src/responses/player/Rank.php @@ -73,11 +73,8 @@ public function getPrefix(Player $player) { return '§b[MVP' . $plusColor . '+§b]'; } else if ($this->id == RankTypes::SUPERSTAR) { $superStarColor = $player->getSuperStarColor(); - if ($superStarColor != null) { - return $player->getSuperStarColor() . '[MVP' . $plusColor . '++§6]'; - } else { - return '§6[MVP' . $plusColor . '++§6]'; - } + if ($superStarColor == null) $superStarColor = ColorUtils::GOLD; + return $superStarColor . '[MVP' . $plusColor . '++' . $superStarColor . ']'; } } }