3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-02-02 15:44:06 +01:00

ts6_common: force nick TS to 100 in SAVE

This commit is contained in:
James Lu 2016-07-10 21:20:47 -07:00
parent a06b478a2e
commit fa59e2bded

View File

@ -408,9 +408,11 @@ class TS6BaseProtocol(IRCS2SProtocol):
oldnick = self.irc.users[user].nick oldnick = self.irc.users[user].nick
self.irc.users[user].nick = user self.irc.users[user].nick = user
self.irc.users[user].ts = ts = int(args[1]) # TS6 SAVE sets nick TS to 100. This is hardcoded in InspIRCd and
# charybdis.
self.irc.users[user].ts = 100
return {'target': user, 'ts': ts, 'oldnick': oldnick} return {'target': user, 'ts': 100, 'oldnick': oldnick}
def handle_topic(self, numeric, command, args): def handle_topic(self, numeric, command, args):
"""Handles incoming TOPIC changes from clients. For topic bursts, """Handles incoming TOPIC changes from clients. For topic bursts,