1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 21:02:38 +00:00

Fix forwarding all messages instead of ones only sent to bot

This commit is contained in:
Myned 2019-11-01 20:45:31 -04:00
parent 268e47a5ea
commit 49c1c90de0
No known key found for this signature in database
GPG key ID: BC58C09870A63E59

View file

@ -94,7 +94,8 @@ async def on_ready():
async def on_message(message): async def on_message(message):
if not u.config['selfbot']: if not u.config['selfbot']:
if message.author is not bot.user and not message.author.bot and message.author.id not in u.block['user_ids']: if message.author is not bot.user and not message.author.bot and message.author.id not in u.block['user_ids']:
if (message.author.id != u.config['owner_id'] if (message.guild is None
and message.author.id != u.config['owner_id']
and not any(s in u.config['prefix'] for s in (message.content[:1], message.content[:2]))): and not any(s in u.config['prefix'] for s in (message.content[:1], message.content[:2]))):
await bot.get_user(u.config['owner_id']).send( await bot.get_user(u.config['owner_id']).send(
f'**@{message.author.name}#{message.author.discriminator}:**\n{message.content}') f'**@{message.author.name}#{message.author.discriminator}:**\n{message.content}')