From 8f232f23c3dad2e53cb83cdaa8d1f70faf2a1fb9 Mon Sep 17 00:00:00 2001 From: Griatch Date: Tue, 13 Oct 2020 22:50:43 +0200 Subject: [PATCH] Make CmdHelp check the view lock to exclude commands from listing --- evennia/commands/default/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/help.py b/evennia/commands/default/help.py index 5bee4647f3..234b724a4b 100644 --- a/evennia/commands/default/help.py +++ b/evennia/commands/default/help.py @@ -175,7 +175,7 @@ class CmdHelp(Command): False: the command shouldn't appear in the table. """ - return True + return cmd.access(caller, "view", default=True) def parse(self): """