Skip to content

Commit c72ceed

Browse files
committed
allowed valor fighters
1 parent 70d2ef8 commit c72ceed

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class Launcher():
88

9-
version = '2025.02b260'
9+
version = '2025.02b261'
1010
__version__ = '2.0'
1111

1212
# holds the style of the app

src/datafunctions.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,11 @@ def load_cargo_data(self, threaded_worker: ThreadObject):
150150
subhead_s = self.theme['tooltip']['equipment_subhead']
151151
who_s = self.theme['tooltip']['equipment_who']
152152
for item in equipment_cargo_data:
153-
if item['type'] in equipment_types and not (
154-
item['name'].startswith('Hangar - Advanced')
155-
or item['name'].startswith('Hangar - Elite')):
153+
if item['type'] in equipment_types:
154+
if 'Valor' not in item['name'] and (
155+
item['name'].startswith('Hangar - Advanced')
156+
or item['name'].startswith('Hangar - Elite')):
157+
continue
156158
name = sanitize_equipment_name(item['name'])
157159
self.cache.equipment[EQUIPMENT_TYPES[item['type']]][name] = {
158160
'Page': item['Page'],

0 commit comments

Comments
 (0)