style(simulation): cargo fmt

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-11 00:15:56 +02:00
co-authored by Claude Opus 4.6
parent 0098ee5a41
commit 0ae3542550
3 changed files with 8 additions and 4 deletions
+3 -1
View File
@@ -668,7 +668,9 @@ pub fn process_contradiction_monologue(
return;
};
let template_idx = entity_rng.rng.random_range(0..CONTRADICTION_TEMPLATE_LINES.len());
let template_idx = entity_rng
.rng
.random_range(0..CONTRADICTION_TEMPLATE_LINES.len());
let text = CONTRADICTION_TEMPLATE_LINES[template_idx]
.replace("{source}", &event.source_display_name)
.replace("{subject}", &event.subject_display_name);