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.