(self, implant)
| 742 | sChar.addImplant(char.ID, item.ID) |
| 743 | |
| 744 | def removeImplantFromContext(self, implant): |
| 745 | sChar = Character.getInstance() |
| 746 | char = self.Parent.Parent.entityEditor.getActiveEntity() |
| 747 | |
| 748 | sChar.removeImplant(char.ID, implant) |
| 749 | |
| 750 | def addImplants(self, implants): |
| 751 | charEditor = self.Parent.Parent |
nothing calls this directly
no test coverage detected