1
0
Fork 0
mirror of synced 2024-06-28 11:10:27 +12:00

Corrected issue where match_multi was never used

This commit is contained in:
Phxntxm 2016-07-29 07:54:36 -05:00
parent 7344058a7b
commit e63242b392

View file

@ -54,7 +54,7 @@ class Owner:
if inspect.isawaitable(result):
result = await result
await self.bot.say("```{0}```".format(result))
elif match_single:
elif match_multi:
def r(v):
self.bot.loop.create_task(self.bot.say("```{}```".format(v)))
exec(match_multi[0])