diff options
| author | mat <git@matdoes.dev> | 2023-09-15 17:00:52 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-09-15 17:00:52 -0500 |
| commit | 659b6a1175298f4e2204c151e1fab0e18548f2ce (patch) | |
| tree | 377bd6106584abad98ec011e7d1607a873e473ff /azalea/src/lib.rs | |
| parent | 622042fd41b89d2d9721314a9d136672bf00eac7 (diff) | |
| download | azalea-drasl-659b6a1175298f4e2204c151e1fab0e18548f2ce.tar.xz | |
rename start_ecs to start_ecs_runner
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, |
