diff options
author | nea <nea@nea.moe> | 2023-06-03 01:37:03 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-06-03 01:37:03 +0200 |
commit | 06a8ace53c3c1fcce02e9a9d085b82acb8cecb71 (patch) | |
tree | c937e899eb5478876cfaa5a832686fd1ce6c7f74 /src/main/kotlin | |
parent | f2eb8c4dc898336f1ee44e62e18b4a7406464736 (diff) | |
download | Firmament-06a8ace53c3c1fcce02e9a9d085b82acb8cecb71.tar.gz Firmament-06a8ace53c3c1fcce02e9a9d085b82acb8cecb71.tar.bz2 Firmament-06a8ace53c3c1fcce02e9a9d085b82acb8cecb71.zip |
Fix translation
Diffstat (limited to 'src/main/kotlin')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/gui/profileviewer/ProfileViewer.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/gui/profileviewer/ProfileViewer.kt b/src/main/kotlin/moe/nea/firmament/gui/profileviewer/ProfileViewer.kt index 98e9489..6b70e6c 100644 --- a/src/main/kotlin/moe/nea/firmament/gui/profileviewer/ProfileViewer.kt +++ b/src/main/kotlin/moe/nea/firmament/gui/profileviewer/ProfileViewer.kt @@ -49,7 +49,7 @@ class ProfileViewer( val names = mapOf(uuid to (Routes.getPlayerNameForUUID(uuid) ?: name)) val data = Routes.getAccountData(uuid) if (data == null) { - source.sendError(Text.translatable("firmament.pv.nohypixel", name)) + source.sendError(Text.translatable("firmament.pv.noprofile", name)) return@launch } val accountData = mapOf(data.uuid to data) |