Fix of the number of charges in multibuy

This commit is contained in:
petosorus
2016-10-06 08:45:35 +02:00
parent c64838f7f5
commit 1853500729

View File

@@ -900,7 +900,7 @@ class Port(object):
curr = "%s\n" % module.item.name if module.item else (
"")
if module.charge and sFit.serviceFittingOptions["exportCharges"]:
curr += "%s x%s\n" % (module.charge.name, module.numShots)
curr += "%s x%s\n" % (module.charge.name, module.numCharges)
stuff[slot].append(curr)
for slotType in EFT_SLOT_ORDER: