diff options
author | notoraptor <stevenbocco@gmail.com> | 2018-10-26 13:43:53 -0400 |
---|---|---|
committer | notoraptor <stevenbocco@gmail.com> | 2019-04-18 11:18:05 -0400 |
commit | 10efa08dc69f9173dc04738aab96f01b00dcbc8a (patch) | |
tree | ad3ae1665db83acc5834146d76fa6be36c6a4db8 /diplomacy/utils/convoy_paths.py | |
parent | 2e7bd06b70c59ea0d1c54bce2114e8d313bfe905 (diff) |
[python] Update SMALL_MAPS in convoy_paths with newly created maps.
[web] Update npm packaqges requirements.
[web] Fix province controller parsing.
Diffstat (limited to 'diplomacy/utils/convoy_paths.py')
-rw-r--r-- | diplomacy/utils/convoy_paths.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/diplomacy/utils/convoy_paths.py b/diplomacy/utils/convoy_paths.py index f882e25..694370f 100644 --- a/diplomacy/utils/convoy_paths.py +++ b/diplomacy/utils/convoy_paths.py @@ -38,7 +38,8 @@ if HOME_DIRECTORY == '~': __VERSION__ = '20180307_0955' # We need to cap convoy length, otherwise the problem gets exponential -SMALL_MAPS = ['standard', 'standard_france_austria', 'standard_germany_italy', 'ancmed', 'colonial', 'modern'] +SMALL_MAPS = ['standard', 'standard_france_austria', 'standard_germany_italy', 'ancmed', 'colonial', 'modern', + 'ancmed_age_of_empires', 'standard_age_of_empires'] SMALL_MAPS_CONVOY_LENGTH = 25 ALL_MAPS_CONVOY_LENGTH = 12 CACHE_FILE_NAME = 'convoy_paths_cache.pkl' |