From 26a6fd233cfdbc9723a642e67cfd0f0f7a967450 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sat, 11 Apr 2026 00:23:44 +0200 Subject: [PATCH] style(simulation): cargo fmt monologue trigger query Co-Authored-By: Claude Opus 4.6 (1M context) --- server/src/simulation/monologue.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server/src/simulation/monologue.rs b/server/src/simulation/monologue.rs index d8490b0bf..8b345de9f 100644 --- a/server/src/simulation/monologue.rs +++ b/server/src/simulation/monologue.rs @@ -587,10 +587,7 @@ fn has_hear_sound_event( /// Remove this stub when those systems' ordering constraints are refactored. pub fn trigger_monologue( _time: Res, - _query: Query< - (&TilePosition, &MonologueState, &MonologueBuffer), - With, - >, + _query: Query<(&TilePosition, &MonologueState, &MonologueBuffer), With>, ) { // Intentional no-op — kept as schedule ordering anchor. See doc comment. // Uses shared refs (not &mut) to avoid blocking parallel systems.