Hello, I recently added some code into my python-sc2 library based bot and when banshee cloak started to research, my starport lifted up but cloak continued to research and eventually finished.
Seems to be a bug
for sp in self.units(STARPORTTECHLAB).ready.noqueue:
if not self.already_pending_upgrade(BANSHEECLOAK) and self.can_afford(BANSHEECLOAK):
print("researching cloak!")
self.combinedActions.append(sp.research(BANSHEECLOAK))```
Hello, I recently added some code into my python-sc2 library based bot and when banshee cloak started to research, my starport lifted up but cloak continued to research and eventually finished.
Seems to be a bug