From fa3b906dce3cc3c3d187de9d23229a53786f2e6e Mon Sep 17 00:00:00 2001 From: Llywelwyn Date: Sat, 23 Sep 2023 11:21:34 +0100 Subject: [PATCH] adds article to ID morgue msg --- src/gamelog/events.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamelog/events.rs b/src/gamelog/events.rs index bef5ff6..3e0006f 100644 --- a/src/gamelog/events.rs +++ b/src/gamelog/events.rs @@ -126,7 +126,7 @@ pub fn record_event(event: EVENT) { new_event = format!("Discovered {}", name); } EVENT::Identified(name) => { - new_event = format!("Identified {}", name); + new_event = format!("Identified {}", crate::gui::with_article(name)); } EVENT::PlayerDied(str) => { // Generating the String is handled in the death effect, to avoid passing the ecs here.