Skip to content

Commit

Permalink
Set all5 as default character
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Dec 23, 2011
1 parent e5c1f78 commit bbc00c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gui/characterSelection.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def refreshCharacterList(self, event=None):
picked = True

if not picked:
charID = cChar.all0ID()
charID = cChar.all5ID()
self.selectChar(charID)
fitID = self.mainFrame.getActiveFit()
cFit = service.Fit.getInstance()
Expand Down Expand Up @@ -131,7 +131,7 @@ def fitChanged(self, event):

if newCharID == None:
cChar = service.Character.getInstance()
self.selectChar(cChar.all0ID())
self.selectChar(cChar.all5ID())
elif currCharID != newCharID:
self.selectChar(newCharID)

Expand Down
2 changes: 1 addition & 1 deletion service/fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def getInstance(cls):

def __init__(self):
self.pattern = DamagePattern.getInstance().getDamagePattern("Uniform")
self.character = Character.getInstance().all0()
self.character = Character.getInstance().all5()
self.dirtyFitIDs = set()

serviceFittingDefaultOptions = {"useGlobalCharacter": False, "useGlobalDamagePattern": False, "defaultCharacter": self.character.ID, "useGlobalForceReload": False}
Expand Down

0 comments on commit bbc00c1

Please sign in to comment.