From 8e8e57024d7b9fe04b646e6180ee355c7621f02c Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 15 Apr 2021 14:20:00 +0100 Subject: [PATCH] Suits: Location Ship "TacticalSuit_Class1" is also on-foot This is the 'Dominator' suit. --- monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor.py b/monitor.py index 7c9cd64c..251031e5 100644 --- a/monitor.py +++ b/monitor.py @@ -68,7 +68,7 @@ class EDLogs(FileSystemEventHandler): # type: ignore # See below _RE_CANONICALISE = re.compile(r'\$(.+)_name;') _RE_CATEGORY = re.compile(r'\$MICRORESOURCE_CATEGORY_(.+);') _RE_LOGFILE = re.compile(r'^Journal(Alpha|Beta)?\.[0-9]{12}\.[0-9]{2}\.log$') - _RE_SHIP_ONFOOT = re.compile(r'^(FlightSuit|UtilitySuit_Class.)$') + _RE_SHIP_ONFOOT = re.compile(r'^(FlightSuit|UtilitySuit_Class.|TacticalSuit_Class.)$') def __init__(self) -> None: # TODO(A_D): A bunch of these should be switched to default values (eg '' for strings) and no longer be Optional