From f2f2582d546327be9e0254dea8370a9bb6b749f7 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 12 May 2020 13:45:06 +0200 Subject: display if a fight had CM activated --- src/output/formats.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/output') diff --git a/src/output/formats.rs b/src/output/formats.rs index 599e804..203502a 100644 --- a/src/output/formats.rs +++ b/src/output/formats.rs @@ -36,13 +36,14 @@ impl Format for HumanReadable { }; writeln!( result, - "{}: {} - {}: {} {}", + "{}: {} - {}: {}{} {}", "Date".green(), item.time .with_timezone(&Local) .format("%Y-%m-%d %H:%M:%S %a"), "Boss".green(), item.boss_name, + if item.is_cm { " CM" } else { "" }, outcome, ) .unwrap(); -- cgit v1.2.3