fix character inherited class method calling

This commit is contained in:
lunacb 2023-01-11 20:27:37 -05:00
parent 8daecbf9fc
commit d2f6684026
1 changed files with 2 additions and 4 deletions

View File

@ -14,10 +14,8 @@ from evennia.contrib.game_systems.clothing import ClothedCharacter
# rpsystem
class Character(ContribRPCharacter, ClothedCharacter, PronounCharacter):
def at_object_creation(self):
super(PronounCharacter, self).at_object_creation()
super(ContribRPCharacter, self).at_object_creation()
super().at_object_creation()
def msg(self, text=None, from_obj=None, session=None, **kwargs):
# TODO: Don't do this. See https://git.disroot.org/vantablack/vantaMOO/issues/29
super(PronounCharacter, self).msg(text, from_obj, session, **kwargs)
#super(ContribRPCharacter, self).msg(text, from_obj, session, **kwargs)
super().msg(text, from_obj, session, **kwargs)