(self, evt)
| 117 | event.Skip() |
| 118 | |
| 119 | def grantMissingSkills(self, evt): |
| 120 | charID = self.getActiveCharacter() |
| 121 | sChar = Character.getInstance() |
| 122 | |
| 123 | skillsMap = self._buildSkillsTooltipCondensed(self.reqs, skillsMap={}) |
| 124 | |
| 125 | for index in skillsMap: |
| 126 | sChar.changeLevel(charID, skillsMap[index][1], skillsMap[index][0], ifHigher=True) |
| 127 | |
| 128 | self.refreshCharacterList() |
| 129 | |
| 130 | def getActiveCharacter(self): |
| 131 | selection = self.charChoice.GetCurrentSelection() |
nothing calls this directly
no test coverage detected