1
0
Fork 0
mirror of synced 2024-05-29 16:59:42 +12:00

Used the correct message sending procedure while not inside a command

This commit is contained in:
phxntxm 2016-10-12 23:42:01 -05:00
parent acc03ef22f
commit d56098025e

View file

@ -72,7 +72,7 @@ class Raffle:
# We don't have to wait for it however, so create a task for it
r_filter = {'id': raffle_id}
self.bot.loop.create_task(config.remove_content('raffles', r_filter))
await self.bot.say(fmt)
await self.bot.send_message(server, fmt)
@commands.command(pass_context=True, no_pm=True)
@checks.custom_perms(send_messages=True)