Fix name being lowercased by HyPixel

This commit is contained in:
nea
2023-06-11 02:50:01 +02:00
parent a36c8f1c0e
commit db8e3640e8
3 changed files with 6 additions and 5 deletions

View File

@@ -167,10 +167,10 @@ data class PlayerData(
) {
val rankPlusDyeColor = LegacyFormattingCode.values().find { it.name == rankPlusColor } ?: LegacyFormattingCode.GOLD
val rankData get() = RepoManager.neuRepo.constants.misc.ranks[if (monthlyPackageRank == "NONE" || monthlyPackageRank == null) packageRank else monthlyPackageRank]
fun getDisplayName() = rankData?.let {
fun getDisplayName(name: String = playerName) = rankData?.let {
("§${it.color}[${it.tag}${rankPlusDyeColor.modern}" +
"${it.plus ?: ""}§${it.color}] $playerName")
} ?: "${Formatting.GRAY}${playerName}"
"${it.plus ?: ""}§${it.color}] $name")
} ?: "${Formatting.GRAY}$name"
}