diff --git a/evennia/commands/default/help.py b/evennia/commands/default/help.py index 35f3a7d12..e9bc868a6 100644 --- a/evennia/commands/default/help.py +++ b/evennia/commands/default/help.py @@ -27,14 +27,14 @@ def format_help_entry(title, help_text, aliases=None, suggested=None): """ string = _SEP + "\n" if title: - string += "{CHelp topic for {w%s{n" % title + string += "{CHelp for {w%s{n" % title if aliases: - string += " {C(aliases: {w%s{n{C){n" % ("{C,{n ".join(aliases)) + string += " {C(aliases: %s{C){n" % ("{C,{n ".join("{w%s{n" % ali for ali in aliases)) if help_text: string += "\n%s" % dedent(help_text.rstrip()) if suggested: string += "\n\n{CSuggested:{n " - string += "{w%s{n" % fill("{C,{n ".join(suggested)) + string += "%s" % fill("{C,{n ".join("{w%s{n" % sug for sug in suggested)) string.strip() string += "\n" + _SEP return string