Added containers contrib
This commit is contained in:
parent
b20aebf260
commit
cca46a84ba
|
@ -15,6 +15,7 @@ own cmdsets by inheriting from them or directly from `evennia.CmdSet`.
|
|||
"""
|
||||
|
||||
from evennia.contrib.game_systems.clothing import ClothedCharacterCmdSet
|
||||
from evennia.contrib.game_systems.containers import ContainerCmdSet
|
||||
from evennia import default_cmds
|
||||
|
||||
from .encounter_cmdset import CmdEngage
|
||||
|
@ -35,6 +36,7 @@ class CharacterCmdSet(default_cmds.CharacterCmdSet):
|
|||
super().at_cmdset_creation()
|
||||
self.add(CmdEngage)
|
||||
self.add(ClothedCharacterCmdSet)
|
||||
self.add(ContainerCmdSet)
|
||||
|
||||
|
||||
class AccountCmdSet(default_cmds.AccountCmdSet):
|
||||
|
|
Loading…
Reference in New Issue