From 86491a935b43ea5db4eb57b9e188553af7c5d117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Pr=C3=A4ntare?= <prantare@live.se> Date: Fri, 31 Aug 2018 16:08:20 +0200 Subject: [PATCH] Real-time mode now defaults to True. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 0c65168..7a8bd4e 100644 --- a/main.py +++ b/main.py @@ -23,8 +23,8 @@ def main(): # participant_2 = create_participants(Race.Terran, bot2) participant_2 = create_computer(Race.Random, Difficulty.Easy) + coordinator.set_real_time(True) coordinator.set_participants([participant_1, participant_2]) - coordinator.launch_starcraft() path = os.path.join(os.getcwd(), "maps", "InterloperTest.SC2Map") -- GitLab