diff options
Diffstat (limited to 'azalea/src/lib.rs')
| -rw-r--r-- | azalea/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs index 77e4ecf1..9e2cfb13 100644 --- a/azalea/src/lib.rs +++ b/azalea/src/lib.rs @@ -188,7 +188,8 @@ where // An event that causes the schedule to run. This is only used internally. let (run_schedule_sender, run_schedule_receiver) = mpsc::unbounded_channel(); - let ecs_lock = start_ecs(self.app, run_schedule_receiver, run_schedule_sender.clone()); + let ecs_lock = + start_ecs_runner(self.app, run_schedule_receiver, run_schedule_sender.clone()); let (bot, mut rx) = Client::start_client( ecs_lock, |
