From 1d9e77be52984805d45ad0ca5056b68df0c805fc Mon Sep 17 00:00:00 2001 From: autocommit Date: Sat, 6 Jun 2026 16:03:16 -0700 Subject: [PATCH] =?UTF-8?q?feat(chronicle):=20=E2=9C=A8=20Add=20support=20?= =?UTF-8?q?for=20recording=20and=20processing=20turn-based=20world=20simul?= =?UTF-8?q?ation=20steps=20in=20the=20Chronicle=20system?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/simulator/crates/mc-turn/src/chronicle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulator/crates/mc-turn/src/chronicle.rs b/src/simulator/crates/mc-turn/src/chronicle.rs index 1a337e66..0c1a3890 100644 --- a/src/simulator/crates/mc-turn/src/chronicle.rs +++ b/src/simulator/crates/mc-turn/src/chronicle.rs @@ -46,7 +46,7 @@ pub enum ChronicleEntry { pop: u32, }, /// p3-13: world event (geological / biological / anomalous) emitted by - /// `mc-sim::event_dispatch::dispatch_world_events` each turn. `category` + /// `mc-worldsim::event_dispatch::dispatch_world_events` each turn. `category` /// is one of `"geological"`, `"biological"`, `"anomalous"`. `kind` is the /// specific event type (e.g. `"earthquake"`, `"plague"`, `"fog_bank"`). /// `col`/`row` are the tile that sourced the event.