From d095e8b054240c3d3d7eabd9a1843d40c1ab3c4a Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 15 Apr 2021 10:43:42 +0100 Subject: [PATCH] Suits: We can't do anything on `SellSuit` yet, placeholder. --- monitor.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/monitor.py b/monitor.py index 05b80c2f..14043371 100644 --- a/monitor.py +++ b/monitor.py @@ -870,6 +870,12 @@ class EDLogs(FileSystemEventHandler): # type: ignore # See below # We know we won't have data for this new one pass + elif event_type == 'SellSuit': + # Remove from known suits + # As of Odyssey Alpha Phase 2, Hotfix 5 (4.0.0.13) this isn't possible as this event + # doesn't contain the specific suit ID as per CAPI `suits` dict. + pass + elif event_type == 'NavRoute': # Added in ED 3.7 - multi-hop route details in NavRoute.json with open(join(self.currentdir, 'NavRoute.json'), 'rb') as rf: # type: ignore