We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f57eb6 commit 28ebcd2Copy full SHA for 28ebcd2
eos/gamedata.py
@@ -343,19 +343,16 @@ def requiredFor(self):
343
500018: "mordu",
344
500019: "sansha",
345
500020: "serpentis",
346
- 500026: "triglavian"
+ 500026: "triglavian",
347
+ 500027: "upwell",
348
}
349
350
@property
351
def race(self):
352
if self.__race is None:
353
354
try:
- if (
355
- self.category.name == 'Structure' or
356
- # Here until CCP puts their shit together
357
- self.name in ("Thunderchild", "Stormbringer", "Skybreaker")
358
- ):
+ if self.category.name == 'Structure':
359
self.__race = "upwell"
360
else:
361
self.__race = self.factionMap[self.factionID]
0 commit comments