Make @clist actually show channel descriptions instead of 'No description' all the time.

This commit is contained in:
Greg Taylor 2009-04-25 04:34:29 +00:00
parent a8434e3c97
commit 723cdab4aa

View file

@ -136,7 +136,7 @@ def cmd_clist(command):
'-',
chan.get_name(),
chan.get_owner().get_name(show_dbref=False),
'No Description'))
chan.description))
source_object.emit_to("-- End of Channel List --")
GLOBAL_CMD_TABLE.add_command("@clist", cmd_clist),