We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you start a game as a human player vs a bot, the human player has to be player 1. This will not work:
sc2.run_game( sc2.maps.get("AbyssalReefLE"), [Bot(sc2.Race.Terran, microbot()),Human(sc2.Race.Protoss)], realtime=True )
You can only select units in the game client of the bot, but not in the human player client.
This works:
sc2.run_game( sc2.maps.get("AbyssalReefLE"), [Human(sc2.Race.Protoss),Bot(sc2.Race.Terran, microbot())], realtime=True )
The text was updated successfully, but these errors were encountered:
Known issue. This should be documented better.
Sorry, something went wrong.
No branches or pull requests
When you start a game as a human player vs a bot, the human player has to be player 1.
This will not work:
You can only select units in the game client of the bot, but not in the human player client.
This works:
The text was updated successfully, but these errors were encountered: