mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 11:42:52 +01:00
Added defaultcapability command.
This commit is contained in:
parent
f4c384a274
commit
c11dba117a
27
src/Owner.py
27
src/Owner.py
@ -662,6 +662,33 @@ class Owner(privmsgs.CapabilityCheckingPrivmsg):
|
||||
except AttributeError: # There's a cleaner way to do this, but I'm lazy.
|
||||
irc.error('I couldn\'t reconnect. You should restart me instead.')
|
||||
|
||||
def defaultcapability(self, irc, msg, args):
|
||||
"""<add|remove> <capability>
|
||||
|
||||
Adds or removes (according to the first argument) <capability> from the
|
||||
default capabilities given to users (the configuration variable
|
||||
supybot.capabilities stores these).
|
||||
"""
|
||||
(action, capability) = privmsgs.getArgs(args, required=2)
|
||||
if action == 'add':
|
||||
conf.supybot.capabilities().add(capability)
|
||||
irc.replySuccess()
|
||||
elif action == 'remove':
|
||||
try:
|
||||
conf.supybot.capabilities().remove(capability)
|
||||
irc.replySuccess()
|
||||
except KeyError:
|
||||
if ircdb.isAntiCapability(capability):
|
||||
irc.error('That capability wasn\'t in '
|
||||
'supybot.capabilities.')
|
||||
else:
|
||||
anticap = ircdb.makeAntiCapability(capability)
|
||||
conf.supybot.capabilities().add(anticap)
|
||||
irc.replySuccess()
|
||||
else:
|
||||
irc.error('That\'s not a valid action to take. Valid actions '
|
||||
'are "add" and "remove"')
|
||||
|
||||
def disable(self, irc, msg, args):
|
||||
"""[<plugin>] <command>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user