Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Extract resources into their target location #5271

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove surplus debug_assert
  • Loading branch information
DJMcNab committed Jul 10, 2022
commit bd65c188e6881d687f5a4679f8f000882b096c35
1 change: 0 additions & 1 deletion crates/bevy_render/src/extract_resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ pub fn extract_resource<R: ExtractResource>(
std::any::type_name::<R>()
);
}
debug_assert!(main_resource.is_added(),);
commands.insert_resource(R::extract_resource(&*main_resource));
}
}