From fdc674e08123a903f4868b140c3b0203ec790cab Mon Sep 17 00:00:00 2001 From: BlauFeuer Date: Wed, 2 Aug 2017 14:41:53 -0400 Subject: [PATCH] Use HELP_MORE setting flag by default --- evennia/commands/default/help.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/evennia/commands/default/help.py b/evennia/commands/default/help.py index fce601e90a..9f7990722d 100644 --- a/evennia/commands/default/help.py +++ b/evennia/commands/default/help.py @@ -16,6 +16,7 @@ from evennia.utils.eveditor import EvEditor from evennia.utils.utils import string_suggestions, class_from_module COMMAND_DEFAULT_CLASS = class_from_module(settings.COMMAND_DEFAULT_CLASS) +HELP_MORE = settings.HELP_MORE # limit symbol import for API __all__ = ("CmdHelp", "CmdSetHelp") @@ -45,9 +46,9 @@ class CmdHelp(Command): return_cmdset = True # Help messages are wrapped in an EvMore call (unless using the webclient - # with separate help popups) If you want to avoid this, simply set the - # 'help_more' flag to False. - help_more = True + # with separate help popups) If you want to avoid this, simply add + # 'HELP_MORE = False' in your settings/conf/settings.py + help_more = HELP_MORE # suggestion cutoff, between 0 and 1 (1 => perfect match) suggestion_cutoff = 0.6