mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-15 08:40:34 +03:00
Also handle 'Data' category ShipLocker and BackPack
I missed this because it is NOT in `ShipLockerItems`, but does show up in `TransferMicroResources`.
This commit is contained in:
parent
020eb36d84
commit
960cb17cfb
16
monitor.py
16
monitor.py
@ -139,13 +139,15 @@ class EDLogs(FileSystemEventHandler): # type: ignore # See below
|
||||
'CargoJSON': None, # The raw data from the last time cargo.json was read
|
||||
'Route': None, # Last plotted route from Route.json file
|
||||
'OnFoot': False, # Whether we think you're on-foot
|
||||
'Component': defaultdict(int), # Odyssey Components in Ship Locker
|
||||
'Item': defaultdict(int), # Odyssey Items in Ship Locker
|
||||
'Consumable': defaultdict(int), # Odyssey Consumables in Ship Locker
|
||||
'BackPack': { # Odyssey BackPack contents
|
||||
'Component': defaultdict(int), # BackPack Components
|
||||
'Consumable': defaultdict(int), # BackPack Consumables
|
||||
'Item': defaultdict(int), # BackPack Items
|
||||
'Component': defaultdict(int), # Odyssey Components in Ship Locker
|
||||
'Item': defaultdict(int), # Odyssey Items in Ship Locker
|
||||
'Consumable': defaultdict(int), # Odyssey Consumables in Ship Locker
|
||||
'Data': defaultdict(int), # Odyssey Data in Ship Locker
|
||||
'BackPack': { # Odyssey BackPack contents
|
||||
'Component': defaultdict(int), # BackPack Components
|
||||
'Consumable': defaultdict(int), # BackPack Consumables
|
||||
'Item': defaultdict(int), # BackPack Items
|
||||
'Data': defaultdict(int), # Backpack Data
|
||||
},
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user