(self, evt)
| 471 | self.charEditor.entityEditor.refreshEntityList(char) |
| 472 | |
| 473 | def exportSkills(self, evt): |
| 474 | char = self.charEditor.entityEditor.getActiveEntity() |
| 475 | |
| 476 | skills = sorted(char.__class__.getSkillNameMap().keys()) |
| 477 | list = "" |
| 478 | for s in skills: |
| 479 | skill = char.getSkill(s) |
| 480 | list += "{} {}\n".format(skill.item.name, skill.level) |
| 481 | |
| 482 | toClipboard(list) |
| 483 | |
| 484 | def exportSkillsSuperCondensed(self, evt): |
| 485 | char = self.charEditor.entityEditor.getActiveEntity() |
nothing calls this directly
no test coverage detected