diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-03-13 15:20:03 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-03-13 15:20:03 +0100 |
commit | fd52e266c6e25999a49c36f17342977b759a2612 (patch) | |
tree | 9c727cac949c9698343d003ee87cfe73c6c6204a /planetwars-matchrunner/src/lib.rs | |
parent | f7655005ff099e8314ecd31e95b26ad74d4efd02 (diff) | |
download | planetwars.dev-fd52e266c6e25999a49c36f17342977b759a2612.tar.xz planetwars.dev-fd52e266c6e25999a49c36f17342977b759a2612.zip |
apply clippy suggestions
Diffstat (limited to 'planetwars-matchrunner/src/lib.rs')
-rw-r--r-- | planetwars-matchrunner/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/planetwars-matchrunner/src/lib.rs b/planetwars-matchrunner/src/lib.rs index 0be0b3d..b7a9e53 100644 --- a/planetwars-matchrunner/src/lib.rs +++ b/planetwars-matchrunner/src/lib.rs @@ -72,7 +72,7 @@ pub async fn run_match(config: MatchConfig) { start_bot( player_id, event_bus.clone(), - &player.bot_spec, + player.bot_spec.as_ref(), match_logger.clone(), ) }) @@ -111,7 +111,7 @@ pub async fn run_match(config: MatchConfig) { async fn start_bot( player_id: u32, event_bus: Arc<Mutex<EventBus>>, - bot_spec: &Box<dyn BotSpec>, + bot_spec: &dyn BotSpec, match_logger: MatchLogger, ) -> (u32, Box<dyn PlayerHandle>) { let player_handle = bot_spec.run_bot(player_id, event_bus, match_logger).await; |