chore(simulation): cargo fmt atlas modules
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -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)?,
|
||||
|
||||
Reference in New Issue
Block a user