1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 01:22:19 +03:00

Backpack: 4.0.0.400 - Can still ignore this for inventory purposes

This commit is contained in:
Athanasius 2021-06-10 12:18:00 +01:00
parent 8f05282d63
commit f852a185e4

@ -1073,21 +1073,8 @@ class EDLogs(FileSystemEventHandler): # type: ignore # See below
pass
elif event_type == 'DropItems':
# alpha4
# Parameters:
# • Name
# • Type
# • OwnerID
# • MissionID
# • Count
# This is handled by BackpackChange.
# for i in self.state['BackPack'][entry['Type']]:
# if i == entry['Name']:
# self.state['BackPack'][entry['Type']][i] -= entry['Count']
# # Paranoia in case we lost track
# if self.state['BackPack'][entry['Type']][i] < 0:
# self.state['BackPack'][entry['Type']][i] = 0
# 4.0.0.400 (still) has a BackpackChange event as well, so
# ignore this for inventory purposes.
pass
elif event_type == 'UseConsumable':