mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 14:33:22 +00:00
Merge pull request #689 from Sid127/develop
Minor modifications for Multi-limpet Controllers
This commit is contained in:
@@ -20,6 +20,7 @@ const GRPCAT = {
|
||||
'cc': 'limpet controllers',
|
||||
'fx': 'limpet controllers',
|
||||
'hb': 'limpet controllers',
|
||||
'mlc': 'limpet controllers',
|
||||
'pc': 'limpet controllers',
|
||||
'rpl': 'limpet controllers',
|
||||
'pce': 'passenger cabins',
|
||||
@@ -92,7 +93,7 @@ const CATEGORIES = {
|
||||
'fi': ['fi'],
|
||||
'fuel': ['ft', 'fs'],
|
||||
'hangars': ['fh', 'pv'],
|
||||
'limpet controllers': ['cc', 'fx', 'hb', 'pc', 'rpl'],
|
||||
'limpet controllers': ['cc', 'fx', 'hb', 'pc', 'rpl', 'mlc'],
|
||||
'passenger cabins': ['pce', 'pci', 'pcm', 'pcq'],
|
||||
'rf': ['rf'],
|
||||
'shields': ['sg', 'bsg', 'psg', 'scb'],
|
||||
@@ -516,6 +517,15 @@ export default class AvailableModulesMenu extends TranslatedComponent {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
// Sort multi limpet controllers by name
|
||||
if (a.grp === 'mlc') {
|
||||
if (a.name[0] <= b.name[0]) {
|
||||
return -1;
|
||||
}
|
||||
if (a.name[0] > b.name[0]) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
// Rating ordered from highest (A) to lowest (E)
|
||||
if (a.rating < b.rating) {
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user