3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-24 19:24:13 +01:00

relay: explicitly mention forwarding in relayed kill messages (#520)

This commit is contained in:
James Lu 2018-06-11 19:10:04 -07:00
parent 7d56b30582
commit 2e3317ce07

View File

@ -1906,7 +1906,7 @@ def handle_kill(irc, numeric, command, args):
# Target user was remote:
if realuser and realuser[0] != irc.name:
del relayusers[realuser][irc.name]
fwd_reason = 'KILL from %s/%s: %s' % (irc.get_friendly_name(numeric), irc.name, args['text'])
fwd_reason = 'KILL FWD from %s/%s: %s' % (irc.get_friendly_name(numeric), irc.name, args['text'])
origirc = world.networkobjects[realuser[0]]