summaryrefslogtreecommitdiffstats
path: root/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugin.py')
-rw-r--r--plugin.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugin.py b/plugin.py
index 289d60d..a40a029 100644
--- a/plugin.py
+++ b/plugin.py
@@ -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):