1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00

Forgot to run App::cleanup()

Oops haha
This commit is contained in:
EightFactorial 2025-03-23 20:16:42 -07:00
parent 9fc51e6c82
commit c315dfd5a1
No known key found for this signature in database

View file

@ -39,11 +39,12 @@ use azalea_protocol::{
resolver,
};
use azalea_world::{Instance, InstanceContainer, InstanceName, PartialInstance};
use bevy_app::{App, Plugin, PluginGroup, PluginGroupBuilder, PluginsState, Update};
use bevy_app::{App, AppExit, Plugin, PluginGroup, PluginGroupBuilder, PluginsState, Update};
use bevy_ecs::{
bundle::Bundle,
component::Component,
entity::Entity,
event::Events,
schedule::{InternedScheduleLabel, IntoSystemConfigs, LogLevel, ScheduleBuildSettings},
system::{ResMut, Resource},
world::World,
@ -868,8 +869,9 @@ pub fn start_ecs_runner(
info!("Waiting for plugins to load ...");
while matches!(app.plugins_state(), PluginsState::Adding) {}
}
// Finish adding the plugins
// Finish adding plugins and cleanup
app.finish();
app.cleanup();
// all resources should have been added by now so we can take the ecs from the
// app