diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-06-10 21:49:32 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-06-10 21:49:32 +0200 |
commit | a3766980735851e9aa4b56a80e91c0b77cf63adb (patch) | |
tree | 0d8e6d077b0cd87809a3b7d9d2e113efc88524ee /planetwars-server/src/routes/matches.rs | |
parent | 5ee66c9c9b4156692c739a861c9cdbaf0c65aec8 (diff) | |
download | planetwars.dev-a3766980735851e9aa4b56a80e91c0b77cf63adb.tar.xz planetwars.dev-a3766980735851e9aa4b56a80e91c0b77cf63adb.zip |
update RunMatch helper to allow for remote bots
Diffstat (limited to 'planetwars-server/src/routes/matches.rs')
-rw-r--r-- | planetwars-server/src/routes/matches.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/planetwars-server/src/routes/matches.rs b/planetwars-server/src/routes/matches.rs index 7169ebe..874c775 100644 --- a/planetwars-server/src/routes/matches.rs +++ b/planetwars-server/src/routes/matches.rs @@ -61,7 +61,7 @@ pub async fn play_match( }); bot_ids.push(matches::MatchPlayerData { - code_bundle_id: code_bundle.id, + code_bundle_id: Some(code_bundle.id), }); } |