aboutsummaryrefslogtreecommitdiff
path: root/diplomacy/engine/game.py
diff options
context:
space:
mode:
Diffstat (limited to 'diplomacy/engine/game.py')
-rw-r--r--diplomacy/engine/game.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/diplomacy/engine/game.py b/diplomacy/engine/game.py
index 8da3480..5f0bb2e 100644
--- a/diplomacy/engine/game.py
+++ b/diplomacy/engine/game.py
@@ -79,8 +79,8 @@ class Game(Jsonable):
e.g. {'PAR': 'FRANCE'} to indicate that PAR was lost by France (previous owner)
- map: Contains a reference to the current map (Map instance)
e.g. map = Map('standard')
- - map_name: Contains a reference to the name of the map that was loaded
- e.g. map_name = 'standard'
+ - map_name: Contains a reference to the name of the map that was loaded (or a full path to a custom map file)
+ e.g. map_name = 'standard' or map_name = '/some/path/to/file.map'
- messages (only for non-observer games): history of messages exchanged inside this game.
Sorted dict mapping message timestamps to message objects (instances of diplomacy.Message).
Format: {message.time_sent => message}