BurnySc2/python-sc2

Add assertion error when calling run_game with wrong argument order

BurnySc2 opened this issue · 0 comments

Using this example

def main():
run_game(
maps.get("AcropolisLE"),
[Bot(Race.Zerg, WorkerSplitBot()), Computer(Race.Terran, Difficulty.Medium)],
realtime=True,
)

Bot should come first, then the built-in-AI
Or for human play: Human player should come first, then the Bot