From c7ccc847be41799ee1855e5d35a48c973e713bb2 Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 26 Aug 2019 08:35:50 +0200 Subject: [PATCH] Add commands missing from `account.__all__`. Resolves #1900. --- evennia/commands/default/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/account.py b/evennia/commands/default/account.py index 1a54bbc131..97b229bd1c 100644 --- a/evennia/commands/default/account.py +++ b/evennia/commands/default/account.py @@ -34,7 +34,7 @@ _MULTISESSION_MODE = settings.MULTISESSION_MODE # limit symbol import for API __all__ = ("CmdOOCLook", "CmdIC", "CmdOOC", "CmdPassword", "CmdQuit", "CmdCharCreate", "CmdOption", "CmdSessions", "CmdWho", - "CmdColorTest", "CmdQuell") + "CmdColorTest", "CmdQuell", "CmdCharDelete", "CmdStyle") class MuxAccountLookCommand(COMMAND_DEFAULT_CLASS):