diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-02-03 20:46:40 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-02-03 20:46:40 +0100 |
commit | 0a102a93716d85d7a1c3ef280761d615cfdd738b (patch) | |
tree | a38864ea2bb2bbbc5976ee9654f3e5855f155fc2 /planetwars-matchrunner/src/bot_runner.rs | |
parent | af7627d346725c974b012df8eb6ebc2a630adf4c (diff) | |
download | planetwars.dev-0a102a93716d85d7a1c3ef280761d615cfdd738b.tar.xz planetwars.dev-0a102a93716d85d7a1c3ef280761d615cfdd738b.zip |
remove send_info method
Diffstat (limited to 'planetwars-matchrunner/src/bot_runner.rs')
-rw-r--r-- | planetwars-matchrunner/src/bot_runner.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/planetwars-matchrunner/src/bot_runner.rs b/planetwars-matchrunner/src/bot_runner.rs index 70fc060..adb5907 100644 --- a/planetwars-matchrunner/src/bot_runner.rs +++ b/planetwars-matchrunner/src/bot_runner.rs @@ -22,11 +22,6 @@ impl PlayerHandle for LocalBotHandle { .send(r) .expect("failed to send message to local bot"); } - - fn send_info(&mut self, _msg: String) { - // TODO: log this somewhere - // drop info message - } } pub fn run_local_bot(player_id: u32, event_bus: Arc<Mutex<EventBus>>, bot: Bot) -> LocalBotHandle { |