From df7c9334c30620de4e8fec7268368378df6c95e3 Mon Sep 17 00:00:00 2001 From: forkless Date: Mon, 1 Jun 2026 02:33:31 +0200 Subject: [PATCH] Use full Multiplayer/Single Player labels everywhere --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index dd4aa41..a55e0d1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -431,10 +431,10 @@ fn action_recover_bak(terminal: &mut Terminal, app: &mut App) -> name.to_string() }; let date = s.mtime.as_deref().unwrap_or("?"); - let save_type = if s.is_online { "Multi" } else { "Single" }; + let save_type = if s.is_online { "Multiplayer" } else { "Single Player" }; let playtime = format_playtime(s.playtime_seconds); format!( - " {:<8} {:<16} {:<6} {:<8} {:>6} {}", + " {:<8} {:<16} {:<14} {:<8} {:>6} {}", label_col, name_col, save_type, @@ -940,7 +940,7 @@ fn action_inspect_saves(terminal: &mut Terminal, app: &mut App) - let fields: Vec<(&str, &str, String)> = vec![ ("SlotName", ":", meta.slot_name.as_deref().unwrap_or("?").into()), ("DisplayName", ":", meta.display_name.as_deref().unwrap_or("(unnamed)").into()), - ("Multiplayer", ":", (if meta.is_online { "yes" } else { "no" }).into()), + ("Game Type", ":", (if meta.is_online { "Multiplayer" } else { "Single Player" }).into()), ("Was Multi", ":", (if meta.was_multiplayer { "yes" } else { "no" }).into()), ("GameMode", ":", meta.game_mode.as_deref().unwrap_or("?").into()), ("Level", ":", meta.level_name.as_deref().unwrap_or("?").into()),