Browse Source

Made this a bit cleaner.

Will revise all permissions code eventually when adopting the
permissions.db system.
tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
14e2114acd
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      earwigbot/commands/chanops.py

+ 2
- 1
earwigbot/commands/chanops.py View File

@@ -33,7 +33,8 @@ class ChanOps(Command):
msg = "Available commands are !voice, !devoice, !op, !deop, !join, and !part."
self.reply(data, msg)
return
if data.command[:2] == "de" and not data.args:
de_escalate = data.command[:2] in ["devoice", "deop"]
if de_escalate and (not data.args or data.args[0] == data.nick):
target = data.nick
elif data.host not in self.config.irc["permissions"]["admins"]:
self.reply(data, "You must be a bot admin to use this command.")


Loading…
Cancel
Save