From 1da536d27404aae8931324a600f4ba7cd7e3e8b3 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Wed, 30 Jun 2021 09:53:11 -0500 Subject: [PATCH] Order systems such that portal and collider-spawning are ordered. --- src/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map.rs b/src/map.rs index 9be23b0..95d41ad 100644 --- a/src/map.rs +++ b/src/map.rs @@ -226,7 +226,7 @@ fn add_map_colliders(mut commands: Commands, maps: Query<(Entity, &Map), Added>, + map: Query<(Entity, &Map), Added>, config: Res, ) { for (entity, map) in map.iter() {