diff --git a/commands/default_cmdsets.py b/commands/default_cmdsets.py index 39a7f95..18e442f 100644 --- a/commands/default_cmdsets.py +++ b/commands/default_cmdsets.py @@ -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):