diff options
Diffstat (limited to 'plugin.py')
| -rw-r--r-- | plugin.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -231,15 +231,16 @@ class EgoServ(callbacks.Plugin): flag = '-a' elif mode == 'deop': flag = '-o' - else: - irc.error(f'Supplied mode {mode} is not allowed/valid') for nick in nicks: irc.queueMsg(msg=ircmsgs.IrcMsg(command='PRIVMSG', args=('chanserv', f'amode {channel} {flag} {nick}'))) + else: + irc.error(f'Supplied mode {mode} is BAD INPUT!') # Would love to handle responses for when it's not an account, # https://github.com/ergochat/ergo/issues/1515 Waiting for this. - irc.replySuccess(f'Setting mode {flag} on given nick(s), if nick(s) weren\'t given the {flag} mode it/they is/are unregistered') + irc.replySuccess(f'= Auto {flag} applied to \x02registered\x0F nicks!') + @wrap([many('channel')]) def chanreg(self, irc, msg, args, channels): |
