(self, character)
| 319 | class HandledSsoCharacterList(list): |
| 320 | |
| 321 | def append(self, character): |
| 322 | old = next((x for x in self if x.client == character.client), None) |
| 323 | if old is not None: |
| 324 | pyfalog.warning("Removing SSO Character with same hash: {}".format(repr(old))) |
| 325 | list.remove(self, old) |
| 326 | |
| 327 | list.append(self, character) |
| 328 | |
| 329 | |
| 330 | class HandledProjectedModList(HandledList): |