diff --git a/CHANGELOG.md b/CHANGELOG.md index b25f94f981..32a8ddab3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,8 @@ - New `crafting` contrib, adding a full crafting subsystem (Griatch 2020) - The `rplanguage` contrib now auto-capitalizes sentences and retains ellipsis (...). This change means that proper nouns at the start of sentences will not be treated as nouns. +- Make MuxCommand `lhs/rhslist` always be lists, also if empty (used to be the empty string) +- Fix typo in UnixCommand contrib, where `help` was given as `--hel`. ### Evennia 0.9.5 (2019-2020) diff --git a/evennia/contrib/unixcommand.py b/evennia/contrib/unixcommand.py index f5a50aad98..afa491fdfb 100644 --- a/evennia/contrib/unixcommand.py +++ b/evennia/contrib/unixcommand.py @@ -123,7 +123,7 @@ class UnixCommandParser(argparse.ArgumentParser): # Replace the -h/--help self.add_argument( - "-h", "--hel", nargs=0, action=HelpAction, help="display the command help" + "-h", "--help", nargs=0, action=HelpAction, help="display the command help" ) def format_usage(self):