mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Add to irc2chan id display.
This commit is contained in:
parent
831b1567ae
commit
fe11cb9d03
1 changed files with 1 additions and 1 deletions
|
|
@ -843,7 +843,7 @@ class CmdIRC2Chan(COMMAND_DEFAULT_CLASS):
|
|||
table = EvTable("{wdbid{n", "{wbotname{n", "{wev-channel{n", "{wirc-channel{n", "{wSSL{n", maxwidth=_DEFAULT_WIDTH)
|
||||
for ircbot in ircbots:
|
||||
ircinfo = "%s (%s:%s)" % (ircbot.db.irc_channel, ircbot.db.irc_network, ircbot.db.irc_port)
|
||||
table.add_row(ircbot.id, ircbot.db.irc_botname, ircbot.db.ev_channel, ircinfo, ircbot.db.irc_ssl)
|
||||
table.add_row("#%i" % ircbot.id, ircbot.db.irc_botname, ircbot.db.ev_channel, ircinfo, ircbot.db.irc_ssl)
|
||||
self.msg(table)
|
||||
else:
|
||||
self.msg("No irc bots found.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue