diff options
author | Aki <please@ignore.pl> | 2022-11-19 12:53:27 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2022-11-19 12:53:27 +0100 |
commit | 45eee2571917b6ff48f237d9796696148cd6086c (patch) | |
tree | 6398dd0a4b5e40037393e0972068082801824a7e | |
parent | 91847d651ca4e3ea8dc1f5c7335643ef01e2e273 (diff) | |
download | kurator-45eee2571917b6ff48f237d9796696148cd6086c.zip kurator-45eee2571917b6ff48f237d9796696148cd6086c.tar.gz kurator-45eee2571917b6ff48f237d9796696148cd6086c.tar.bz2 |
Increased spawn spread
-rw-r--r-- | battles/src/BaseBattle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/battles/src/BaseBattle.cpp b/battles/src/BaseBattle.cpp index 4088936..98af764 100644 --- a/battles/src/BaseBattle.cpp +++ b/battles/src/BaseBattle.cpp @@ -19,7 +19,7 @@ namespace battles BaseBattle::BaseBattle(const Scenario& scenario) : _registry {}, - spawner {scenario.total_teams(), 2.5, 0.1} + spawner {scenario.total_teams(), 3.0, 0.2} { const auto repo = universe::load_sample(); Builder build {_registry, spawner}; |