fixes #248
This commit is contained in:
parent
a7cf96824e
commit
af27e1a253
|
@ -1623,7 +1623,10 @@ async def on_message(msg):
|
||||||
flags.append((flag.split(" ")[0][0].lower(), flag.split(" ",1)[1].strip()))
|
flags.append((flag.split(" ")[0][0].lower(), flag.split(" ",1)[1].strip()))
|
||||||
except IndexError:
|
except IndexError:
|
||||||
flags.append((flag.split(" ")[0][0].lower(), None))
|
flags.append((flag.split(" ")[0][0].lower(), None))
|
||||||
await comm.execute(msg, send_text, flags)
|
|
||||||
|
if comm.isauthorized(msg.author): #only execute command if authorized
|
||||||
|
await comm.execute(msg, send_text, flags)
|
||||||
|
|
||||||
except StopIteration:
|
except StopIteration:
|
||||||
await msg.channel.send("Can't find that command, boss; try checking the list with `m;help`.")
|
await msg.channel.send("Can't find that command, boss; try checking the list with `m;help`.")
|
||||||
except CommandError as ce:
|
except CommandError as ce:
|
||||||
|
|
Loading…
Reference in a new issue