aboutsummaryrefslogtreecommitdiff
path: root/compose
diff options
context:
space:
mode:
authorPaweł Dybiec <pawel@dybiec.info>2021-07-12 21:27:59 +0100
committerPaweł Dybiec <pawel@dybiec.info>2021-07-12 21:27:59 +0100
commit09c76a8328d811b9ae20ab555331208549eacaab (patch)
tree20cdb15365673222e0d8bca3a9b7f0162920ba10 /compose
parentAdd ipv6 in nginx, move certs (diff)
New maps in csgo
Diffstat (limited to 'compose')
-rw-r--r--compose/cs/cs.py14
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)