1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 16:27:13 +03:00

Merge pull request #479 from VAKazakov/patch-1

Fixing reputation values error on Inara
This commit is contained in:
Athanasius 2020-06-18 17:18:40 +01:00 committed by GitHub
commit bb9385422d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -374,7 +374,7 @@ def journal_entry(cmdr, is_beta, system, station, entry, state):
[
OrderedDict([
('minorfactionName', f['Name']),
('minorfactionReputation', f['MyReputation']),
('minorfactionReputation', f['MyReputation']/100.0),
]) for f in entry['Factions']
])