Skip to content

Commit

Permalink
Merge pull request #1366 from burnsypet/issue-1362
Browse files Browse the repository at this point in the history
Include service modules in EFT export
  • Loading branch information
blitzmann authored Feb 1, 2018
2 parents 0c971a1 + b103f0d commit b04fcb0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions service/port.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,14 @@
except ImportError:
from utils.compat import OrderedDict

EFT_SLOT_ORDER = [Slot.LOW, Slot.MED, Slot.HIGH, Slot.RIG, Slot.SUBSYSTEM]
EFT_SLOT_ORDER = [Slot.LOW, Slot.MED, Slot.HIGH, Slot.RIG, Slot.SUBSYSTEM, Slot.SERVICE]
INV_FLAGS = {
Slot.LOW: 11,
Slot.MED: 19,
Slot.HIGH: 27,
Slot.RIG: 92,
Slot.SUBSYSTEM: 125
Slot.SUBSYSTEM: 125,
Slot.SERVICE: 164
}

INV_FLAG_CARGOBAY = 5
Expand Down

0 comments on commit b04fcb0

Please sign in to comment.