From 723cdab4aa9e30d1d0c6e9c72e838342ca80d85d Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Sat, 25 Apr 2009 04:34:29 +0000 Subject: [PATCH] Make @clist actually show channel descriptions instead of 'No description' all the time. --- src/commands/comsys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/comsys.py b/src/commands/comsys.py index 53d4c43093..22f8d2ed3f 100644 --- a/src/commands/comsys.py +++ b/src/commands/comsys.py @@ -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),