|
@@ -39,7 +39,7 @@ def main(map_dir_path: str, seed_value: int=None):
|
39
|
39
|
simulation = TileStrategySimulation(config, map_file_path=map_file_path)
|
40
|
40
|
subjects = TileStrategySubjects(simulation=simulation)
|
41
|
41
|
|
42
|
|
- for position in ((10, 2),):
|
|
42
|
+ for position in ((10, 2), (11, 3), (11, 4), (12, 5),):
|
43
|
43
|
man = TileSubject(
|
44
|
44
|
config=config,
|
45
|
45
|
simulation=simulation,
|
|
@@ -52,7 +52,7 @@ def main(map_dir_path: str, seed_value: int=None):
|
52
|
52
|
)
|
53
|
53
|
subjects.append(man)
|
54
|
54
|
|
55
|
|
- for position in ((30, 14),):
|
|
55
|
+ for position in ((30, 15), (31, 16), (32, 17), (33, 18),):
|
56
|
56
|
man = TileSubject(
|
57
|
57
|
config=config,
|
58
|
58
|
simulation=simulation,
|