summaryrefslogtreecommitdiff
path: root/engine-ecs/src/phase.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-07-23 17:38:51 +0200
committerHampusM <hampus@hampusmat.com>2026-07-23 17:38:51 +0200
commit624e6dd450944e67d84ad7afda54ae2abd277aba (patch)
tree908834c4d666eaf6b5f1fd3670e4951d98af1efe /engine-ecs/src/phase.rs
parent66cbb5d207094799740228c4c913218ddca3a19d (diff)
refactor(engine-ecs): remove distinction between query terms with & without a field
Diffstat (limited to 'engine-ecs/src/phase.rs')
-rw-r--r--engine-ecs/src/phase.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine-ecs/src/phase.rs b/engine-ecs/src/phase.rs
index cccf978..cd8ab56 100644
--- a/engine-ecs/src/phase.rs
+++ b/engine-ecs/src/phase.rs
@@ -38,7 +38,7 @@ pub(crate) struct HasSystem;
#[cfg(debug_assertions)]
-pub(crate) fn check_parents(phase_query: Query<(Pair<ChildOf, Wildcard>, Option<&EntityName>), (With<Phase>,)>)
+pub(crate) fn check_parents(phase_query: Query<(Pair<ChildOf, Wildcard>, Option<&EntityName>, With<Phase>,)>)
{
for (child_of, ent_name) in &phase_query {
let Some(parent_ent) = child_of.get_target_ent() else {