diff --git a/assets/voxygen/i18n/en.ron b/assets/voxygen/i18n/en.ron index 06f877f67c..abb07f4a45 100644 --- a/assets/voxygen/i18n/en.ron +++ b/assets/voxygen/i18n/en.ron @@ -90,9 +90,9 @@ Thanks for taking the time to read this notice, we hope you enjoy the game! // Login process description "main.login_process": r#"Information on the Login Process: -The name you put in will be your character name ingame. +Put in any username. No Account needed yet. -Character names and appearances will be saved on your computer. +Character names and appearances will be saved locally. Levels/Items are not saved yet."#, diff --git a/voxygen/src/menu/char_selection/ui.rs b/voxygen/src/menu/char_selection/ui.rs index c1c91b5122..b6e2ba82c0 100644 --- a/voxygen/src/menu/char_selection/ui.rs +++ b/voxygen/src/menu/char_selection/ui.rs @@ -607,7 +607,7 @@ impl CharSelectionUi { .color(TEXT_COLOR) .set(self.ids.character_names[i], ui_widgets); - Text::new("Level ") + Text::new("Level 1") //TODO Insert real level here as soon as they get saved .down_from(self.ids.character_names[i], 4.0) .font_size(17) .font_id(self.fonts.cyri)