mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-30 14:14:37 +01:00
Fixed showing of originating server in relaynames, and showing of empty name
This commit is contained in:
parent
54221f1e87
commit
a144afcd69
@ -121,8 +121,9 @@ class Relay(privmsgs.CapabilityCheckingPrivmsg):
|
|||||||
return
|
return
|
||||||
users = []
|
users = []
|
||||||
for (abbreviation, otherIrc) in self.ircs.iteritems():
|
for (abbreviation, otherIrc) in self.ircs.iteritems():
|
||||||
Channel = otherIrc.state.channels[channel]
|
if abbreviation != self.abbreviations[irc]:
|
||||||
users.append('%s: %s' % (abbreviation, ', '.join(Channel.users)))
|
Channel = otherIrc.state.channels[channel]
|
||||||
|
users.append('%s: %s'%(abbreviation,', '.join(Channel.users)))
|
||||||
irc.reply(msg, '; '.join(users))
|
irc.reply(msg, '; '.join(users))
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user