From d5a2d3b0e87ee793f71bdfb887d15183a6437885 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 9 Oct 2015 21:39:09 -0700 Subject: [PATCH] unreal: fix incorrect comment --- protocols/unreal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/unreal.py b/protocols/unreal.py index 34381ae..2487757 100644 --- a/protocols/unreal.py +++ b/protocols/unreal.py @@ -323,7 +323,7 @@ class UnrealProtocol(TS6BaseProtocol): finalprefix += char namelist.append(user) self.irc.users[user].channels.add(channel) - # Only merge prefix modes if our TS is smaller or equal to theirs. + # Only merge the remote's prefix modes if their TS is smaller or equal to ours. if their_ts <= our_ts: utils.applyModes(self.irc, channel, [('+%s' % mode, user) for mode in finalprefix]) self.irc.channels[channel].users.add(user)