Don't show dbrefs on @clist.
This commit is contained in:
parent
5372bb5a05
commit
67d3d5a3c5
1 changed files with 4 additions and 1 deletions
|
|
@ -132,7 +132,10 @@ def cmd_clist(command):
|
||||||
source_object.emit_to("** Channel Owner Description")
|
source_object.emit_to("** Channel Owner Description")
|
||||||
for chan in src.comsys.get_all_channels():
|
for chan in src.comsys.get_all_channels():
|
||||||
source_object.emit_to("%s%s %-14.13s%-22.15s%s" %
|
source_object.emit_to("%s%s %-14.13s%-22.15s%s" %
|
||||||
('-', '-', chan.get_name(), chan.get_owner().get_name(),
|
('-',
|
||||||
|
'-',
|
||||||
|
chan.get_name(),
|
||||||
|
chan.get_owner().get_name(show_dbref=False),
|
||||||
'No Description'))
|
'No Description'))
|
||||||
source_object.emit_to("-- End of Channel List --")
|
source_object.emit_to("-- End of Channel List --")
|
||||||
GLOBAL_CMD_TABLE.add_command("@clist", cmd_clist),
|
GLOBAL_CMD_TABLE.add_command("@clist", cmd_clist),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue