Skip to content

Commit

Permalink
Add support for SoE race. Their ships do not use it yet due to wrong …
Browse files Browse the repository at this point in the history
…skill requirements
  • Loading branch information
DarkFenX committed Oct 7, 2013
1 parent b6feb1c commit 782f3cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions eos/gamedata.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ def race(self):
8: "gallente",
9: "guristas", # Caldari + Gallente
10: "angelserp", # Minmatar + Gallente, final race depends on the order of skills
12: "sisters", # Amarr + Gallente
16: "jove",
32: "sansha", # Incrusion Sansha
128: "ore"}
Expand Down
9 changes: 2 additions & 7 deletions gui/shipBrowser.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ def stage1(self, event):
self.raceselect.Show(False)
self.Layout()

RACE_ORDER = ["amarr", "caldari", "gallente", "minmatar", "ore", "serpentis", "angel", "blood", "sansha", "guristas", "jove", None]
RACE_ORDER = ["amarr", "caldari", "gallente", "minmatar", "sisters", "ore", "serpentis", "angel", "blood", "sansha", "guristas", "jove", None]

def raceNameKey(self, ship):
return self.RACE_ORDER.index(ship.race), ship.name
Expand Down Expand Up @@ -1030,13 +1030,8 @@ def __init__(self, parent, shipID=None, shipFittingInfo=("Test", 2), itemData=No

self.raceBmp = bitmapLoader.getBitmap("race_%s_small" % self.shipRace, "icons")

if self.shipName == "Apotheosis":
self.raceMBmp = bitmapLoader.getBitmap("race_jove_small","icons")
else:
self.raceMBmp = bitmapLoader.getBitmap("fit_delete_small","icons")

if not self.raceBmp:
self.raceBmp = self.raceMBmp
self.raceBmp = bitmapLoader.getBitmap("fit_delete_small","icons")

self.raceDropShadowBmp = drawUtils.CreateDropShadowBitmap(self.raceBmp, 0.2)

Expand Down
Binary file added icons/race_sisters_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 782f3cd

Please sign in to comment.