From 661ec5cb0b5948e706df1de8fabc4056132ad1c6 Mon Sep 17 00:00:00 2001 From: Simon Vermeersch Date: Sun, 5 Feb 2017 00:18:37 +0100 Subject: [PATCH] Help command fix for players that don't have options saved --- 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 5b7a0c5e0a..c5a2b7f25e 100644 --- a/evennia/commands/default/help.py +++ b/evennia/commands/default/help.py @@ -59,7 +59,7 @@ class CmdHelp(Command): if self.session.protocol_key in ("websocket", "ajax/comet"): try: options = self.caller.player.db._saved_webclient_options - if options["helppopup"]: + if options and options["helppopup"]: usemore = False except KeyError: pass