Configurable server option for number of extra bots in humans vs. machines
The functionality can be achieved by changing lines 97 and 123 of levels/hvm.py
like so:
- while self.botSurplus < 0:
+ while self.botSurplus < number_of_extra_bots:
This should be configurable per arena, like machines_difficulty
or machines_bot_kind
.