Allow all 5 and 0 to change skills from affecting skill menu

This commit is contained in:
blitzmann
2015-09-14 20:35:36 -04:00
parent f2b4400834
commit bd53785667
3 changed files with 9 additions and 2 deletions

View File

@@ -193,6 +193,9 @@ class Character(object):
return char
def saveCharacter(self, charID):
"""Save edited skills"""
if charID == self.all5ID() or charID == self.all0ID():
return
char = eos.db.getCharacter(charID)
char.saveLevels()