Fix posing (for real this time.)

This commit is contained in:
Greg Taylor 2009-01-25 01:37:43 +00:00
parent 1bbffe99a8
commit eacdf8b33c

View file

@ -203,6 +203,9 @@ def match_alias(command):
Convenience sub-function to combine the lopped off command string
and arguments for posing, saying, and nospace posing aliases.
"""
if not command.command_argument:
return command.command_string[1:]
else:
return "%s %s" % (command.command_string[1:],
command.command_argument)