Fix fetching of prices of on-character implants

This commit is contained in:
DarkPhoenix
2019-04-16 16:25:44 +03:00
parent fd54d2c28c
commit e57fce39fe
7 changed files with 11 additions and 13 deletions

View File

@@ -156,7 +156,7 @@ class ImplantDisplay(d.Display):
event.Skip()
return
self.original = fit.implants if fit is not None else None
self.original = fit.appliedImplants if fit is not None else None
self.implants = fit.appliedImplants[:] if fit is not None else None
if self.implants is not None:
self.implants.sort(key=lambda implant: implant.slot or 0)