diff options
author | Paweł Dybiec <pawel@dybiec.info> | 2021-07-12 21:27:59 +0100 |
---|---|---|
committer | Paweł Dybiec <pawel@dybiec.info> | 2021-07-12 21:27:59 +0100 |
commit | 09c76a8328d811b9ae20ab555331208549eacaab (patch) | |
tree | 20cdb15365673222e0d8bca3a9b7f0162920ba10 /compose | |
parent | Add ipv6 in nginx, move certs (diff) |
New maps in csgo
Diffstat (limited to 'compose')
-rw-r--r-- | compose/cs/cs.py | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/compose/cs/cs.py b/compose/cs/cs.py index 90ab96f..fdb32fd 100644 --- a/compose/cs/cs.py +++ b/compose/cs/cs.py @@ -9,14 +9,18 @@ all_maps = [ "mirage 🇲🇦", "overpass 🌉", "vertigo 🏗️", "nuke ☢", - "train 🚆", + "ancient 🐉", "dust 🏜", - "anubis ☥", + "train 🚆", + #"anubis ☥", "cache ☭", "agency 🏢", - "office 🖥"] -maps = [ all_maps[i] for i in [0,1,2,3,4,5,6]] -LOOKAHEAD=6 + "office 🖥", + "grind 🚛", + "mocha ☕"] +#maps = [ all_maps[i] for i in [0,1,2,3,4,5,6]] +maps = all_maps +LOOKAHEAD=7 # Rafal's method def maps_of_day(day: datetime.date) -> Tuple[str, str]: l = len(maps) |