From 262347f8c8c24e0171f7149e4825189b18378a87 Mon Sep 17 00:00:00 2001 From: Vasyl Horbachenko Date: Tue, 11 Sep 2018 22:46:26 +0300 Subject: [PATCH] tweaked caucasus start times --- theater/caucasus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theater/caucasus.py b/theater/caucasus.py index fd824c4a..a449fce9 100644 --- a/theater/caucasus.py +++ b/theater/caucasus.py @@ -17,7 +17,7 @@ class CaucasusTheater(ConflictTheater): daytime_map = { "dawn": (6, 9), "day": (9, 18), - "dusk": (18, 21), + "dusk": (18, 20), "night": (0, 5), } @@ -79,4 +79,4 @@ class CaucasusTheater(ConflictTheater): def add_controlpoint(self, point: ControlPoint, connected_to: typing.Collection[ControlPoint] = []): point.name = " ".join(re.split(r"[ -]", point.name)[:1]) - super(CaucasusTheater, self).add_controlpoint(point, connected_to=connected_to) \ No newline at end of file + super(CaucasusTheater, self).add_controlpoint(point, connected_to=connected_to)