|
@@ -16,7 +16,8 @@ def generate_points(config: GameConfig) -> List[Tuple[str, float, float]]:
|
|
|
"""
|
|
|
Generate points according to the GameConfig.
|
|
|
"""
|
|
|
- return source_groups[config.generation_method].get_points_from(config.rounds, config.country_lock)
|
|
|
+ # note - force exactly config.rounds points, even though most top level sources should be well-behaved in this regard
|
|
|
+ return source_groups[config.generation_method].get_points_from(config.rounds, config.country_lock)[:config.rounds]
|
|
|
|
|
|
|
|
|
def restock_source(config: GameConfig):
|