From 06a8ace53c3c1fcce02e9a9d085b82acb8cecb71 Mon Sep 17 00:00:00 2001 From: nea Date: Sat, 3 Jun 2023 01:37:03 +0200 Subject: Fix translation --- src/main/kotlin/moe/nea/firmament/gui/profileviewer/ProfileViewer.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin/moe/nea/firmament') 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) -- cgit