mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
Updated deop/dehalfop/devoice to work by default on the sender of the message.
This commit is contained in:
parent
56b68d6893
commit
9873981fd8
@ -91,13 +91,14 @@ class Channel(callbacks.Privmsg):
|
||||
voice = privmsgs.checkChannelCapability(voice, 'voice')
|
||||
|
||||
def deop(self, irc, msg, args, channel):
|
||||
"""[<channel>] <nick> [<nick> ...]
|
||||
"""[<channel>] [<nick> ...]
|
||||
|
||||
If you have the #channel.op capability, this will remove operator
|
||||
privileges from all the nicks given.
|
||||
privileges from all the nicks given. If no nicks are given, removes
|
||||
operator privileges from the person sending the message.
|
||||
"""
|
||||
if not args:
|
||||
raise callbacks.ArgumentError
|
||||
args.append(msg.nick)
|
||||
if irc.nick in irc.state.channels[channel].ops:
|
||||
irc.queueMsg(ircmsgs.deops(channel, args))
|
||||
else:
|
||||
@ -105,13 +106,14 @@ class Channel(callbacks.Privmsg):
|
||||
deop = privmsgs.checkChannelCapability(deop, 'op')
|
||||
|
||||
def dehalfop(self, irc, msg, args, channel):
|
||||
"""[<channel>] <nick> [<nick> ...]
|
||||
"""[<channel>] [<nick> ...]
|
||||
|
||||
If you have the #channel.op capability, this will remove half-operator
|
||||
privileges from all the nicks given.
|
||||
privileges from all the nicks given. If no nicks are given, removes
|
||||
half-operator privileges from the person sending the message.
|
||||
"""
|
||||
if not args:
|
||||
raise callbacks.ArgumentError
|
||||
args.append(msg.nick)
|
||||
if irc.nick in irc.state.channels[channel].ops:
|
||||
irc.queueMsg(ircmsgs.dehalfops(channel, args))
|
||||
else:
|
||||
@ -119,13 +121,14 @@ class Channel(callbacks.Privmsg):
|
||||
dehalfop = privmsgs.checkChannelCapability(dehalfop, 'op')
|
||||
|
||||
def devoice(self, irc, msg, args, channel):
|
||||
"""[<channel>] <nick> [<nick> ...]
|
||||
"""[<channel>] [<nick> ...]
|
||||
|
||||
If you have the #channel.op capability, this will remove voice from all
|
||||
the nicks given.
|
||||
the nicks given. If no nicks are given, removes voice from the person
|
||||
sending the message.
|
||||
"""
|
||||
if not args:
|
||||
raise callbacks.ArgumentError
|
||||
args.append(msg.nick)
|
||||
if irc.nick in irc.state.channels[channel].ops:
|
||||
irc.queueMsg(ircmsgs.devoices(channel, args))
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user