diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-08-28 15:47:31 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-08-28 15:47:31 +0200 |
commit | 0ce40a9f317ed243a0c97141bc4e9af85b39f439 (patch) | |
tree | e51c0b120cfdfd94036c62888835ad691c06ca89 /planetwars-matchrunner/src | |
parent | 49a5735e07e7868195590a13c247698aaa1c5358 (diff) | |
download | planetwars.dev-0ce40a9f317ed243a0c97141bc4e9af85b39f439.tar.xz planetwars.dev-0ce40a9f317ed243a0c97141bc4e9af85b39f439.zip |
raise turn limit to 500
Diffstat (limited to 'planetwars-matchrunner/src')
-rw-r--r-- | planetwars-matchrunner/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/planetwars-matchrunner/src/lib.rs b/planetwars-matchrunner/src/lib.rs index 5aff793..fcd4799 100644 --- a/planetwars-matchrunner/src/lib.rs +++ b/planetwars-matchrunner/src/lib.rs @@ -58,7 +58,7 @@ pub struct MatchOutcome { pub async fn run_match(config: MatchConfig) -> MatchOutcome { let pw_config = PwConfig { map_file: config.map_path, - max_turns: 100, + max_turns: 500, }; let event_bus = Arc::new(Mutex::new(EventBus::new())); |