mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 13:02:38 +00:00
Remove forwarding of messages due to privacy concerns
This commit is contained in:
parent
3dd3647aa4
commit
152aafea6e
1 changed files with 0 additions and 6 deletions
|
@ -94,12 +94,6 @@ async def on_ready():
|
|||
async def on_message(message):
|
||||
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.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]))):
|
||||
await bot.get_user(u.config['owner_id']).send(
|
||||
f'**{message.author.id}:**\n{message.content}')
|
||||
|
||||
await bot.process_commands(message)
|
||||
else:
|
||||
if not message.author.bot:
|
||||
|
|
Loading…
Reference in a new issue