1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 00:30:33 +03:00

Merge pull request #2181 from HullSeals/fix/2176/TCE-reported-split-issue

[2176] Fix Outfitting Split
LGTM
This commit is contained in:
Phoebe 2024-03-23 16:32:21 +01:00 committed by David Sangrey
parent e18db0a641
commit 8b3ef230f5
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -69,7 +69,7 @@ def lookup(module, ship_map, entitled=False) -> dict | None: # noqa: C901, CCR0
# Armour - e.g. Federation_Dropship_Armour_Grade2
if name[-2] == 'armour':
# Armour is ship-specific, and ship names can have underscores
ship_name, armour_grade = module["name"].lower().rsplit("_", 2)[0:2]
ship_name, armour, armour_grade = module["name"].lower().rsplit("_", 2)[0:3]
if ship_name not in ship_map:
raise AssertionError(f"Unknown ship: {ship_name}")
new['category'] = 'standard'