From 596d632e5a084615512ce6bb36846dbb296f1259 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Mon, 13 Jan 2020 20:36:47 -0500 Subject: [PATCH] Fix converted / non-converted status --- youmubot/src/commands/osu/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youmubot/src/commands/osu/mod.rs b/youmubot/src/commands/osu/mod.rs index d634e32..d3917be 100644 --- a/youmubot/src/commands/osu/mod.rs +++ b/youmubot/src/commands/osu/mod.rs @@ -320,9 +320,9 @@ fn score_embed<'a>( .push_bold_line( b.mode.to_string() + if bm.is_converted() { - "" - } else { " (Converted)" + } else { + "" }, ) .push("CS")