Dentosal / python-sc2

A StarCraft II bot api client library for Python 3
MIT License
586 stars 182 forks source link

Add can_attack property #185

Closed tweakimp closed 5 years ago

tweakimp commented 5 years ago

Old: self.units.filter(lambda u: u.can_attack_ground or u.can_attack_air) New: self.units.filter(lambda u: u.can_attack)

Should be a bit faster :)