mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-11 12:42:34 +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):
|
class UserStat(ChannelStat):
|
||||||
_values = ChannelStat._values + ['kicked']
|
_values = ['kicked'] + ChannelStat._values
|
||||||
def __init__(self, kicked=0, *args):
|
def __init__(self, kicked=0, *args):
|
||||||
ChannelStat.__init__(self, *args)
|
ChannelStat.__init__(self, *args)
|
||||||
self.kicked = kicked
|
self.kicked = kicked
|
||||||
|
Loading…
Reference in New Issue
Block a user