mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 11:12:47 +01:00
Fixed for a certain user whose name starts with a J and has "Finch" in it.
This commit is contained in:
parent
1bf4f5554f
commit
2672cf6080
@ -107,7 +107,7 @@ class ChannelStat(irclib.IrcCommandDispatcher):
|
||||
|
||||
|
||||
class UserStat(ChannelStat):
|
||||
_values = ChannelStat._values + ['kicked']
|
||||
_values = ['kicked'] + ChannelStat._values
|
||||
def __init__(self, kicked=0, *args):
|
||||
ChannelStat.__init__(self, *args)
|
||||
self.kicked = kicked
|
||||
|
Loading…
Reference in New Issue
Block a user