Added containers contrib

This commit is contained in:
Hazel Nova 2024-01-10 08:25:10 +00:00
parent b20aebf260
commit cca46a84ba
1 changed files with 2 additions and 0 deletions

View File

@ -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.clothing import ClothedCharacterCmdSet
from evennia.contrib.game_systems.containers import ContainerCmdSet
from evennia import default_cmds from evennia import default_cmds
from .encounter_cmdset import CmdEngage from .encounter_cmdset import CmdEngage
@ -35,6 +36,7 @@ class CharacterCmdSet(default_cmds.CharacterCmdSet):
super().at_cmdset_creation() super().at_cmdset_creation()
self.add(CmdEngage) self.add(CmdEngage)
self.add(ClothedCharacterCmdSet) self.add(ClothedCharacterCmdSet)
self.add(ContainerCmdSet)
class AccountCmdSet(default_cmds.AccountCmdSet): class AccountCmdSet(default_cmds.AccountCmdSet):