iiYese

Results 4 issues of 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. ##...

C-Enhancement
A-ECS
C-Usability
A-Reflection
A-Editor
C-Breaking-Change
S-Controversial

## 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. ##...

C-Bug
A-ECS
S-Ready-For-Implementation

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:...