(self, implants)
| 748 | sChar.removeImplant(char.ID, implant) |
| 749 | |
| 750 | def addImplants(self, implants): |
| 751 | charEditor = self.Parent.Parent |
| 752 | char = charEditor.entityEditor.getActiveEntity() |
| 753 | |
| 754 | sChar = Character.getInstance() |
| 755 | for implant in implants: |
| 756 | sChar.addImplant(char.ID, implant.item.ID) |
| 757 | |
| 758 | wx.PostEvent(charEditor, GE.CharChanged()) |
| 759 | |
| 760 | def spawnMenu(self, event): |
| 761 | context = (("implantEditor",),) |
no test coverage detected