aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/apis
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/apis')
-rw-r--r--src/main/kotlin/moe/nea/firmament/apis/Profiles.kt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt b/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt
index ae23349..553fd9f 100644
--- a/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt
+++ b/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt
@@ -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"
}