chore(simulation): cargo fmt atlas modules

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-03 09:46:16 +02:00
co-authored by Claude Opus 4.6
parent 64a873fc1a
commit f1278f88fd
10 changed files with 247 additions and 137 deletions
+2 -3
View File
@@ -144,9 +144,8 @@ fn collect_names(conn: &Connection) -> rusqlite::Result<Vec<(String, String)>> {
// Star systems — include both system_name and proper_name as separate patterns
// so "Van Maanen's Star" and "GJ 35" both trigger if used in dialogue.
{
let mut stmt = conn.prepare(
"SELECT system_id, system_name, proper_name FROM star_systems",
)?;
let mut stmt =
conn.prepare("SELECT system_id, system_name, proper_name FROM star_systems")?;
let rows = stmt.query_map([], |row| {
Ok((
row.get::<_, String>(0)?,