fix issues
All checks were successful
Rust Checks / checks (push) Successful in 2m22s
Rust Checks / checks (pull_request) Successful in 2m9s

This commit is contained in:
CoCo_Sol 2024-04-01 16:00:26 +02:00
parent fdee1c330e
commit 9b7c022915

View file

@ -13,8 +13,8 @@ pub struct OwnershipPlugin;
impl Plugin for OwnershipPlugin {
fn build(&self, app: &mut App) {
app.add_systems(Update, render_ownership)
.add_systems(Startup, setup_ownership_resources);
app.add_systems(Update, render_ownership);
app.add_systems(Startup, setup_ownership_resources);
}
}