iiYese
iiYese
As described in issue title. Using bevy 0.9 with 0.7.2.
## What problem does this solve or what need does it fill? It's hard to remember everything you need to reflect on & it's quite verbose to do so. ##...
## Bevy version 0.13 ## What you did Have a system with `EntityRef` & `ResMut`. ## What went wrong System should not have any access conflicts but it does. ##...
Code to reproduce: ```rs use bevy::{asset::io::file::FileAssetReader, prelude::*}; use bevy_kira_audio::prelude::{AudioChannel, AudioSource, *}; #[derive(Event)] struct Load; #[derive(Event)] struct Play; #[derive(Resource, Default)] pub struct Channel; fn load( _: Trigger, channel: Res, mut sources:...