mirror of
https://github.com/evennia/evennia.git
synced 2026-03-27 02:06:32 +01:00
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")
|
||||
for chan in src.comsys.get_all_channels():
|
||||
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'))
|
||||
source_object.emit_to("-- End of Channel List --")
|
||||
GLOBAL_CMD_TABLE.add_command("@clist", cmd_clist),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue